Typeof and instanceof

1. Typeof is the detection type, and instanceof is the detection type.

For example, let a=3.1415926; typeof(a); // Return Number a instanceof Number// trueCopy the code