What is _?
Numeric separator. Only for readability purposes.
What is Number.parseInt()
Static method. Analyzes a string argument and returns an integer of the base specified. If the base is not specified, the default is 10. It is the same as the global function parseInt()
What is NaN?
Is a value representing Not-A-Number. It is a property of the global object.
What operations return NaN?
What is the % operator?
Division remainder. Returns the remainder left over when one operand is divided by a second operand. It always takes the sign of the dividend.