Created
March 4, 2022 00:16
-
-
Save ulisseshen/c9630177066839e3c2e844044c0d46a3 to your computer and use it in GitHub Desktop.
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 characters
var nome = 'Ulisses' | |
var sobrenome = 'Hen'; | |
var idade = 29; | |
console.log('Meu nome é ' + nome + ' ' + sobrenome + ' e tenho ' + idade + ' anos.'); | |
// exibe: Meu nome é Ulisses Hen e tenho 29 anos. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment