Skip to content

Instantly share code, notes, and snippets.

@ranamahmud
Created November 2, 2020 14:53
Show Gist options
  • Save ranamahmud/4244ff2ca83ebffe59a87adbf2c6da76 to your computer and use it in GitHub Desktop.
Save ranamahmud/4244ff2ca83ebffe59a87adbf2c6da76 to your computer and use it in GitHub Desktop.
const PI = 3.14159;
var num1 = 5;
console.log(num1);
// 5 // output
var num1 = "Hello";
console.log(num1);
// Hello //output
let text = "Hello World!";
console.log(text);
// Hello World! // output
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment