This file contains hidden or 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 characters
let numeroUm = 1 | |
let stringUm = '1' | |
let numeroTrinta = 30 | |
let stringTrinta = '30' | |
let numeroDez = 10 | |
let stringDez = '10' | |
if (numeroUm == stringUm) { | |
console.log('As variáveis numeroUm e stringUm tem o mesmo valor, mas tipos diferentes'); | |
} else { |