Why it worked
This video likely performed well due to its niche appeal to developers and students learning Javascript. The concise format and direct question make it easily shareable and engaging for the target audience.
Summary
The video presents a Javascript quiz with the question "Javascript quiz #8". It displays a code snippet involving an array of numbers, sorting it, and then logging the element at index 1.
Structure
- 1Title card: Javascript quiz #8
- 2Code snippet initialization
- 3Array sorting
- 4Console log output
On-screen text
Javascript quiz #8
const numbers = [33, 2, 8];
numbers.sort();
console.log(numbers[1]);