Signup/Sign In
Ask Question
Not satisfied by the Answer? Still looking for a better solution?

JS Level 11 lesson 3

i cant understand the push() function
<!doctype html>
<html>
<head>
<title>JS Array Operations</title>
</head>
<body>
<script>
let numbers = [1, 22, 333, 4444];
// Perform operations
numbers.reverse().pop().push(55555);
</script>
</body>
</html>
by

2 Answers

USMANflka8
please how did you solve for level 8 lesson 1
pooja12345
numbers.reverse().pop();

numbers.reverse().push(55555);
document.write(numbers);

Login / Signup to Answer the Question.