Guest User

Untitled

a guest
Oct 16th, 2018
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.14 KB | None | 0 0
  1. const x = {
  2. 29.17 : 42
  3. };
  4.  
  5. console.log(typeof Object.keys(x)[0]);
  6. console.log(x[29.17]);
  7.  
  8. const key = .291 * 100 + 0.07;
  9. console.log(x[key]);
Add Comment
Please, Sign In to add comment