Guest User

Untitled

a guest
Oct 16th, 2018
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. const x = {
  2. reallyPositive: Number.POSITIVE_INFINITY,
  3. reallyNegative: Number.NEGATIVE_INFINITY,
  4. nan: Number.NaN
  5. };
  6.  
  7. const y = JSON.parse(JSON.stringify(x));
  8. console.log(y);
Add Comment
Please, Sign In to add comment