8 kyu
Is integer safe to use?
4,206 of 4,543priyankaherur
Description:
Not all integers can be represented by JavaScript/TypeScript. It has space to to represent 53bit signed integers. In this Kata, we've to determine if it is safe to use the integer or not. Make use of the latest ES6 features to find this.
SafeInteger(9007199254740990) //true
SafeInteger(-90) //true
SafeInteger(9007199254740992) //false
Fundamentals
Similar Kata:
Stats:
Created | Jul 14, 2015 |
Published | Jul 14, 2015 |
Warriors Trained | 5720 |
Total Skips | 138 |
Total Code Submissions | 7601 |
Total Times Completed | 4543 |
JavaScript Completions | 4206 |
TypeScript Completions | 421 |
Total Stars | 46 |
% of votes with a positive feedback rating | 92% of 958 |
Total "Very Satisfied" Votes | 820 |
Total "Somewhat Satisfied" Votes | 122 |
Total "Not Satisfied" Votes | 16 |