Skip to content

Instantly share code, notes, and snippets.

@dumindu
Last active December 31, 2016 19:44
Show Gist options
  • Save dumindu/0b4c166bf59b835ba664 to your computer and use it in GitHub Desktop.
Save dumindu/0b4c166bf59b835ba664 to your computer and use it in GitHub Desktop.
let a = 5;
let b = a + 1; //6
let c = a - 1; //4
let d = a * 2; //10
let e = a / 2; // ⭐️ 2 not 2.5
let f = a % 2; //1
let g = 5.0 / 2.0; //2.5
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment