Javascript advanced

Javascript advanced

Professional Development

6 Qs

quiz-placeholder

Similar activities

CSS Selectors

CSS Selectors

Professional Development

10 Qs

16. RISPACS - HISKKM Specialist

16. RISPACS - HISKKM Specialist

Professional Development

11 Qs

Excel Training Learning Resources

Excel Training Learning Resources

Professional Development

10 Qs

4. Day 2_ITBA 10 Soal

4. Day 2_ITBA 10 Soal

KG - Professional Development

10 Qs

c programming-Test 1

c programming-Test 1

Professional Development

10 Qs

Illustrator ACP Test (1)

Illustrator ACP Test (1)

University - Professional Development

10 Qs

JavaScript Fundamentals

JavaScript Fundamentals

9th Grade - Professional Development

10 Qs

[FE] Ice Breaking - Navigating the World of Variables, Spread, a

[FE] Ice Breaking - Navigating the World of Variables, Spread, a

Professional Development

10 Qs

Javascript advanced

Javascript advanced

Assessment

Quiz

Computers

Professional Development

Easy

Created by

Tomas Martinez

Used 4+ times

FREE Resource

6 questions

Show all answers

1.

MATCH QUESTION

1 min • 1 pt

Match and submit!

can be reassigned and redefined

const

can be reassigned but NOT redefined

let

cannot be reassigned another value.

var

2.

MATCH QUESTION

1 min • 1 pt

Match and submit!

() => { }

function expression stored in a variable

const x = function (a, b) {return a * b}

anonymous arrow function syntax

function passed as an argument to anothe

callback functions

3.

MATCH QUESTION

1 min • 1 pt

Match and submit!

DOM manipulation

the context in which the variable is accessible. There are global scope, function scope, and block scope in JavaScript.

scope

where variables and function declarations are moved to the top of their scope before code execution

hoisting

changing the structure, content, or style of a web page using JavaScript

4.

MATCH QUESTION

1 min • 1 pt

Match and submit!

==

OR operator

===

AND operator

&&

strict equality comparison that does not perform type coercion and requires the operands to have the same type

||

loose equality comparison that performs type coercion if necessary to make the comparison possible

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

the data representation of the objects that comprise the structure and content of a document on the web

DON

DOM

MOM

TOM

6.

MATCH QUESTION

1 min • 1 pt

Match and submit.

closure

returns a “bound variant” of function func that fixes the context this and first arguments if given

self-invoking function

(function(){
console.log("This function is called immediately");
})();

function binding

an inner function having access to an outer/parent function scope, even after the outer/parent function has closed

call stack

to keep track of its place, in a script that calls multiple functions— what function is currently being run and what functions are called from within that function