Skip to content

Latest commit

 

History

History
48 lines (40 loc) · 816 Bytes

index.md

File metadata and controls

48 lines (40 loc) · 816 Bytes

fronteditor.dev/nlw-unite #HTML HyperText

Markup -Tag -Atributos

Language

#CSS

Cascating StyleSheet

#JavaScript

// variáveis
const mensagem = 'Oi, tudo bem?'
// tipos de dados
 //number
 //string
 //fun~ção
 alert(mensagem)

// Objeto JavaScript const participante = { nome: "Mayk Brito", email: "[email protected]", dataInscricao: new Date(2024, 2, 23, 19, 23), dataCheckIn: new Date(2024, 2, 25, 20, 20) } //array

let participantes = [

{ nome: "Mayk Brito", email: "[email protected]", dataInscricao: new Date(2024, 2, 23, 19, 23), dataCheckIn: new Date(2024, 2, 25, 20, 20) }, ]; // estrutura de repetição for(let participante of participantes) //faça alguma coisa aqui //enquanto tiver participantes aqui