There has been several Number static methods added. Number.isNaN() determines whether the passed value is NaN and its type is Number. It is a more robust version of the original, global isNaN().

See the Pen thecodelog.com - ES6 Number Static Methods 1 by Deano (@deangilewicz) on CodePen.

Number.isInteger() determines whether the passed value is an integer.

See the Pen thecodelog.com - ES6 Number Static Methods 2 by Deano (@deangilewicz) on CodePen.

Number.parseInt() parses a string argument and returns an integer of the specified radix or base.

See the Pen thecodelog.com - ES6 Number Static Methods 3 by Deano (@deangilewicz) on CodePen.

Number.parseFloat() parses a string argument and returns a floating point number.

See the Pen thecodelog.com - ES6 Number Static Methods 4 by Deano (@deangilewicz) on CodePen.