How to create array from existing array in JavaScript

Arrays
By Jad Joubran · 
Last updated Dec 21, 2017
const apps = ["phone", "calculator", "clock"];

const clonedApps = [...apps];
["phone", "calculator", "clock"]