Files
2018-10-16 21:32:40 +05:30

487 B
Raw Blame History

title, localeTitle
title localeTitle
Constructing Strings with Variables Construindo Strings com Variáveis

Construindo Strings com Variáveis

Adicione variáveis que armazenam strings para criar strings mais longas. Verifique se a ortografia e o espaçamento estão corretos.

var myName = "Bobby"; 
 var myFavLetter = "B"; 
 var sentence = "Hello, I'm " + myName + ". My favorite letter is " + myFavLetter + "."; 
  //The result is "Hello, I'm Bobby. My favorite letter is B.