Skip to content

Instantly share code, notes, and snippets.

@DavidPeralvarez
Created March 18, 2020 11:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save DavidPeralvarez/8e686e65414af350aabee3f8ac6ecf20 to your computer and use it in GitHub Desktop.
Save DavidPeralvarez/8e686e65414af350aabee3f8ac6ecf20 to your computer and use it in GitHub Desktop.
JavaScript - Cadenas de texto
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Curso de Javascript</title>
</head>
<body>
<script src="scripts.js"></script>
</body>
</html>
/* Cadenas de texto */
var peliculaFavorita = 'El Padrino',
frase = 'Mi película favorita es: ',
frase2 = frase + ' ' + peliculaFavorita;
console.log( frase2 );
// console.log( 'Mi película favorita es: ' + peliculaFavorita );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment