HTML Hullabaloo
CSS Circus
JS Jamboree
Framework Freakout
Debug Derby
100

The element that defines the root of an HTML document

What is the <html> element?

100

This property is used to change the color of text

What is "color"?

100

This keyword is used to declare a variable that cannot be reassigned

What is "const"?

100

This framework is known for its JSX syntax and virtual DOM reconciliation algorithm

What is "React"?

100

When debugging, this tool allows developers to inspect and modify the structure of a webpage

What is "DevTools"?

200

The lowest level heading element

What is the <h6> tag?

200

The boldest font-weight

What is "font-weight: 900"?

200

This method is used to add one or more elements to the end of an array

What is "push()"?

200

A progressive framework, famous for its single-file components and built-in client-side router

What is "Vue"?

200

This issue might occur when a function is called with incorrect arguments or parameter types

What is a "type error"?

300

This element is ideal for icons, illustrations, and interactive graphics

What is <svg>

300

This property is used to control the spacing between lines of text

What is "line-height"?
300

This operator is used to compare both value and type

What is the "strict equality operator"?

300

This framework emphasizes two-way data binding and uses TypeScript as its primary language

What is "Angular"?

300

Separate your variables with this to console.log multiple values with one statement

What is a "comma"?

400

This element is used to create a container for user input, which can be submitted to a server for processing

What is the <form> element?

400

This feature allows for the creation of complex layouts using rows and columns

What is "CSS Grid"?

400

This function is used to execute a block of code after a specified number of milliseconds

What is "setTimeout()"?

400

This lightweight framework compiles components into efficient imperative code and optimizes DOM updates at build time rather than runtime

What is "Svelte"?

400

This error results from attempting to use a variable or function that has not been declared or is out of scope

What is a "reference error"?

500

This element is used to specify the base URL for all relative URLs in a document

<base>

500

This selector allows you to select elements based on their position within a parent element

What is the ":nth-child()" selector?

500

This array method is used to create a new array with all elements that pass a test implemented by a provided function

What is the "filter()" method?

500

This framework distinguishes itself with its emphasis on reactive rendering, JSX syntax for component definition, and direct DOM mutation rather than relying on a virtual DOM

What is "Solid"?

500

What is wrong with this code: const myArray = [1, 2, 3]; myArray.foreach(num => console.log(num));

What is "forEach"?

M
e
n
u