Last active
October 23, 2020 17:28
-
-
Save walidmahade/10933f49e8b23f0e8f5d20b73d85b60c to your computer and use it in GitHub Desktop.
Introduction to computer programming.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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