Level 78 Level 80
Level 79

[No Typing] Type Conversion


7 words 0 ignored

Ready to learn       Ready to review

Ignore words

Check the boxes below to ignore/unignore words, then click save at the bottom. Ignored words will never appear in any learning session.

All None

Ignore?
x.constructor
returns the constructor function for all JavaScript variables
String(x); x.toString()
Converting Numbers to Strings
String(boolean); boolean.toString();
Converting Booleans to Strings
String(Date()); Date().toString();
Converting Dates to Strings
Number(string);
Converting Strings to Numbers
Number(boolean);
Converting Booleans to Numbers
Number(date);
Converting Dates to Numbers