JavaScript Basics (2)

JavaScript Basics (2)

University

20 Qs

quiz-placeholder

Similar activities

JavaScript

JavaScript

3rd Grade - University

20 Qs

Javascript, HTML & CSS revision

Javascript, HTML & CSS revision

University

20 Qs

Introduction to Python

Introduction to Python

University

20 Qs

CSC264 Javascript Basic

CSC264 Javascript Basic

University

15 Qs

JavaScript Variables, Data Types, and Operators Quiz

JavaScript Variables, Data Types, and Operators Quiz

University

18 Qs

Refresh your JavaScript Skills!

Refresh your JavaScript Skills!

University

16 Qs

1°DS _AV2_R2 1TEC_IP_Introd. e Conceitos Básicos de JavaScript

1°DS _AV2_R2 1TEC_IP_Introd. e Conceitos Básicos de JavaScript

11th Grade - University

16 Qs

JavaScript basics

JavaScript basics

8th Grade - University

15 Qs

JavaScript Basics (2)

JavaScript Basics (2)

Assessment

Quiz

Computers

University

Hard

Created by

Long Nguyen

FREE Resource

20 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What keyword is used to define a constant in JavaScript?

let

var

const

def

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which keyword was introduced in ES6 to declare block-scoped variables?

var

let

const

function

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following is true about variables declared with `const`?

They can be redeclared

They cannot be reassigned

They are automatically global

They have function scope

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the difference between `let` and `var` in JavaScript?

`let` variables can be redeclared, `var` cannot

`var` has block scope, `let` has global scope

`let` has block scope, `var` has function scope

`var` cannot be reassigned, `let` can

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is a basic difference between JavaScript and PHP in conditional statements?

PHP uses `elseif`, JavaScript uses `else if`

JavaScript uses `elseif`, PHP uses `else if`

Both use `elseif`

Both use `else if`

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How do you declare a simple function in JavaScript?

function sayHello();

sayHello function() {}

function sayHello() {}

def function sayHello() {}

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How do you call a function named `sayHello` in JavaScript?

call sayHello();

sayHello();

execute sayHello();

invoke sayHello();

Create a free account and access millions of resources

Create resources
Host any resource
Get auto-graded reports
or continue with
Microsoft
Apple
Others
By signing up, you agree to our Terms of Service & Privacy Policy
Already have an account?