Testing Type
JavaScript offers a way to test the type of a variable. However, the result can be confusing — for example, the type of an array is "Object."
It's common practice to use the typeof
operator when trying to determining the type of a specific value.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
|
jQuery also offers utility methods to help determine the type of an arbitrary value.