JSFiddle - React, Tailwind, and code Playground
JavaScript
var InfoSeminarsArray =['Digital Data Streams ', 'Network Stability ','Privacy Preservation ','The Bottom-Up Technology ','Augmented Reality Games '];
console.log(InfoSeminarsArray);
//old order-'Digital Data Streams ', 'Network Stability ','Privacy Preservation','The Bottom-Up Technology','Augmented Reality Games'
//new order-“Privacy Preservation”, “The Bottom-Up Technology”, “Digital Data Streams”, “Network Stability.”
//PROGRAMMING PROBLEM 1
//instructions
/*
1. View the list of the original Seminars order.
2. Remove the 'Augmented Reality Games' seminar which takes place in the end by popping it off the list.
3. Remove the seminar of 'Digital Data Streams ' from the first position in the list by using the shift method.
4. Similarly, Remove the seminar of 'Network Stability ' from the first position in the list by using the shift method.
5. Push in or insert in 'Digital Data Streams' seminar which brings it to the third position in the list.
6. Push in or insert in 'Network Stability ' seminar which brings it to the fourth position in the list.
7. log/show the array onto the screen.
*/
console.log(InfoSeminarsArray.pop());
console.log(InfoSeminarsArray.shift());
console.log(InfoSeminarsArray.shift());
console.log(InfoSeminarsArray.push('Digital Data Streams '));
console.log(InfoSeminarsArray.push('Network Stability '));
console.log(InfoSeminarsArray);
//PROGRAMMING PROBLEM 2
/*Instructions
1. View the list of the Seminars
2. View the locations for each seminar
3. create a new list in the form of an array that contains the new Seminar Information available.
4. in the array or new list, type the name of every seminar along with its location and attendance in a single object or sub-lists within the new list.
5.Seperate every sub-list in an object containing information about a particular seminar from other sub-lists with a comma.
6. Log/show the array onto the screen.
*/
var NewSeminarInfo= [{Name:"Digital Data Streams",Location:"The Business School",...