/main.js Secret
Last active
June 28, 2021 01:37
Revisions
-
mfortunat0 renamed this gist
Jun 28, 2021 . 1 changed file with 0 additions and 0 deletions.There are no files selected for viewing
File renamed without changes. -
mfortunat0 created this gist
Jun 22, 2021 .There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,6 @@ console.assert(1 > 2, "Numero inferior a 2") // Ira exibir uma string 'Numero inferior a 2' console.assert(1 > 2, { message:"Numero inferior a 2" }) // Ira exibir um objeto uma unica propriedade message // Outro exemplo const data = { name: "carlos", year: 20 } console.assert(data.lastName, "Nao possui propriedade lastName")