Skip to content

Files

This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Latest commit

author
name
Aug 17, 2022
ae54f4c · Aug 17, 2022

History

History
10 lines (6 loc) · 164 Bytes

methods.md

File metadata and controls

10 lines (6 loc) · 164 Bytes

Methods

Using methods on an array alters an array in some sort of way.

var array = [1, 2, 3]; 

array = array.join(''); 

console.log(array);