JavaScript in Plain English

New JavaScript and Web Development content every day. Follow to join our 3.5M+ monthly readers.

Follow publication

Member-only story

12 Useful JavaScript Interview Tips

--

Part 3: A list of some of the common knowledge points that you must know about JavaScript

This series of articles has compiled a list of some of the common knowledge points that you must know about JavaScript, which will give you great confidence whether you are interviewing or developing on a daily basis.

In the previous article we listed some general knowledge points which you can view by clicking on the following links:

1. What is a `Set’ object and how does it work?

Set object allows you to store unique values of any type, whether they are primitive values or object references.

We can create a Set instance using the Set constructor.

const set1 = new Set();
const set2 = new

--

--

Published in JavaScript in Plain English

New JavaScript and Web Development content every day. Follow to join our 3.5M+ monthly readers.

Written by Maxwell

A front-end enthusiast, a development engineer willing to learn more about development techniques and collaborate to build better software.

Responses (4)

Write a response