Tagged in

JavaScript

Learning to code bit by bit
Learning to code bit by bit
My journey into web development.
More information
Followers
6
More, on Medium

Special Objects: Arrays

Arrays are similar to objects (in fact, they are objects), the only difference is that they are contiguous ordered


Symbols

Symbols are primitive data types that can be created with the following syntax: let symbolName = Symbol("optionalDescription"); . A symbol can…