Contact: aviboots(AT)netvision.net.il
39,900 questions
51,831 answers
573 users
const array = ['c++', 'typescript', 'c', 'java']; array .slice() .reverse() .forEach(element => { console.log(element); }); /* run: "java" "c" "typescript" "c++" */