JS General

Associative Arrays in JavaScript

A Map is a key-value collection that can be used to create associative arrays. Unlike an object, a Map allows values ​​of any type, both primitive and reference, to be used as keys.
Learn More

String Methods

replace() - Method searches a string for a value or a regular expression. Method returns a new string with the value(s) replaced. Method does not change the original string.
Learn More