This site is mobile accessible. Press the "Tap Here" button to use a smaller font-size.
Smartphone icons created by Freepik - Flaticon
Slice out a part of an array starting from array element 3 ("Apple")
const fruits = [" Banana", " Orange", " Lemon", " Apple", " Mango"]; const citrus = fruits.slice(3); document.getElementById("demo").innerHTML = fruits + "<br><br>" + citrus;