The six individuals in the line array are waiting in line. Write the JavaScript
ID: 3809596 • Letter: T
Question
The six individuals in the line array are waiting in line. Write the JavaScript code to add or remove elements to/from the array to simulate the following events:
1.)The person at the front of the line (index 0) leaves the line (shift).
2.)The person at the end of the line cuts in front of the person at the front of the line (pop and unshift).
3.)Two new people named "Poe" and "Snoke" cut into line behind the second person in line (splice).
4.)The fifth person in line leaves the line (splice).
5.)A new person named "Han" enters the back of the line (push).
Finally, display the contents of the line array to view the new line occupants. A correct solution will show: Leia, Finn, Poe, Snoke, Maz, Han.
1 People waiting in line (Kylo is in front, Leia at the end) 2 var line Kylo "Finn", Rey "Maz", Leia"] 4 Show entire line 5 console.log(line)Explanation / Answer
Find the below code in the javascript as the problem statement requirements:
var line = ["kylo","Finn","Rey","Maz","leia"];
console.log("list: %o",line);
console.log("Removed First Item: %o",splice(1));
console.log("list: %o",line);
console.log("Removed Fifth Item: %o",splice(4));
console.log("list: %o",line);
console.log("Removed third Item: %o",splice(1));
console.log("list: %o",line);
console.log("Removed Fourth Item: %o",splice(2));
console.log("list: %o",line);
console.log(Removed fifthe item: %o",solice(1));
console.log("list: %",line);
console.log(line.push("Han"));
console.log(line.unshift("Leia"," Finn"," Poe", "Snoke"," Maz"));
console.log("Total result to display:"+line);
Related Questions
drjack9650@gmail.com
Navigate
Integrity-first tutoring: explanations and feedback only — we do not complete graded work. Learn more.