Skip to content

Instantly share code, notes, and snippets.

@Ifmr24
Last active September 17, 2018 21:52
Show Gist options
  • Save Ifmr24/462872c069b26c38e2eae20a0ba22929 to your computer and use it in GitHub Desktop.
Save Ifmr24/462872c069b26c38e2eae20a0ba22929 to your computer and use it in GitHub Desktop.
JS Variable VAR
// 1 - VARIABLES.
var pais = 'Chile'; // String
var continente = 'Latino America'; // String
var antiguedad = 2018; // Entero
var pais_y_continente = pais + ' ' + continente // Cadena
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment