Open In App

Crossword Puzzle Of The Week #11 (for JavaScript)

Last Updated : 24 Mar, 2023
Improve
Improve
Like Article
Like
Save
Share
Report

In this issue of Crossword Puzzle of the week, we will dive into the topic of JavaScript. The solution to the crossword puzzle is provided at the end.

Crossword Puzzle Of The Week #11 (for JavaScript)

HINTS:

DOWN:

1. _____ scripting simply means running scripts, such as JavaScript, on the client device, usually within a browser.

2. The ______ method executes a reducer function for array element.

3. JavaScript uses _____ scoping to resolve the variable names when a function is created inside another function.

4. when a variable is declared in a certain scope having the same name defined on its outer scope and when we call the variable from the inner scope, the value assigned to the variable in the inner scope is the value that will be stored in the variable in the memory space. This is known as _____.

5. The _____ method creates a new array filled with elements that pass a test provided by a function.

ACROSS:

1. A _____ is the combination of a function bundled together (enclosed) with references to its surrounding state (the lexical environment).

6. The _____ loop loops through a block of code as long as a specified condition is true.

7. The ______ of a variable means that the variable is accessible within the block that is between the curly braces.

8. _____ scripting runs on the back-end server.

9. _____ is JavaScript’s default behavior of moving declarations to the top.

Solution for Crossword Puzzle #11:

Crossword Puzzle Of The Week #11 (for JavaScript)

Answers:

DOWN:

1. CLIENT SIDE
2. REDUCE
3. LEXICAL
4. SHADOWING
5. FILTER

ACCROS:

1. CLOSURE
6. WHILE
7. BLOCK SCOPE
8. SERVER SIDE
9. HOISTING


Like Article
Suggest improvement
Previous
Next
Share your thoughts in the comments

Similar Reads