This site is mobile accessible. Press the "Tap Here" button to use a smaller font-size.

Smartphone icons created by Freepik - Flaticon

JavaScript Arrays

The concat() Method

The concat() method can merge string values to arrays:

const myArray = [" Emil", " Tobias", " Linus"];
const myChildren = myArray.concat(" Peter"); 
document.getElementById("demo").innerHTML = myChildren;