Skip to content

Commit

Permalink
done till rounding numbers
Browse files Browse the repository at this point in the history
  • Loading branch information
anandujjwal13 committed Jan 19, 2017
1 parent dc12fff commit bb55b82
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
2 changes: 2 additions & 0 deletions numbers.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
var example = 123456789;
console.log(example);
3 changes: 3 additions & 0 deletions rounding-numbers.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
var roundUp=1.5;
roundUp=Math.round(roundUp);
console.log(roundUp);

0 comments on commit bb55b82

Please sign in to comment.