Skip to content

Instantly share code, notes, and snippets.

@walidmahade
Last active October 23, 2020 17:28
Show Gist options
  • Save walidmahade/10933f49e8b23f0e8f5d20b73d85b60c to your computer and use it in GitHub Desktop.
Save walidmahade/10933f49e8b23f0e8f5d20b73d85b60c to your computer and use it in GitHub Desktop.
Introduction to computer programming.
// set a value
let a = "Earth is round";
let x = 18;
// get a value
alert(a); // "Earth is round"
alert(x); // 18
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment