Skip to content

Instantly share code, notes, and snippets.

@ulisseshen
Created March 4, 2022 00:16
Show Gist options
  • Save ulisseshen/c9630177066839e3c2e844044c0d46a3 to your computer and use it in GitHub Desktop.
Save ulisseshen/c9630177066839e3c2e844044c0d46a3 to your computer and use it in GitHub Desktop.
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