Posts: 143
Threads: 105
Thanks Received: 0 in 0 posts
Thanks Given: 1
Joined: Jun 2017
Reputation:
0
What are the different JavaScript types?
•
Posts: 156
Threads: 49
Thanks Received: 0 in 0 posts
Thanks Given: 0
Joined: Jun 2017
Reputation:
0
JavaScript has six primitives types: string , number , undefined , null , boolean , and symbol . There is also a compound type or object . Interestingly, the primitive types are immutable and don't have properties.
•