Skip to content

Instantly share code, notes, and snippets.

@jaamaalxyz
Created February 27, 2018 04:08
Show Gist options
  • Save jaamaalxyz/5359da7354db5942c777931f8ed5d799 to your computer and use it in GitHub Desktop.
Save jaamaalxyz/5359da7354db5942c777931f8ed5d799 to your computer and use it in GitHub Desktop.
let mango; // Declaration or Initialization
mango = "We are mango people"; // String type data asisgned in mango variable
// Or you can declare or initialize and assign value all in onec.
let myNumber = 32;
let myString = 'Hello, World!';
let myBoolean = true;
// If you want to see the output
console.log(mango); // We are mango people
console.log(myNumber); // 32
console.log(myString); // Hello, World!
console.log(myBoolean); // true;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment