JavaScript-Style

JavaScript-Style

1st - 4th Grade

7 Qs

quiz-placeholder

Similar activities

Suffixes  (-ous -ful -able -less)

Suffixes (-ous -ful -able -less)

3rd Grade

10 Qs

Friday January 22, 2021

Friday January 22, 2021

3rd Grade

11 Qs

Faction test

Faction test

2nd - 3rd Grade

11 Qs

2nd Grade Geometry

2nd Grade Geometry

3rd Grade

11 Qs

Knowing our numbers

Knowing our numbers

4th - 6th Grade

12 Qs

WHO KNOWS THE MOST ABOUT PI NUMBER?

WHO KNOWS THE MOST ABOUT PI NUMBER?

3rd - 12th Grade

10 Qs

Measurement

Measurement

2nd Grade

10 Qs

jeremaih

jeremaih

1st - 12th Grade

9 Qs

JavaScript-Style

JavaScript-Style

Assessment

Quiz

Mathematics

1st - 4th Grade

Medium

Created by

NEREA HERNÁNDEZ

Used 3+ times

FREE Resource

7 questions

Show all answers

1.

MULTIPLE SELECT QUESTION

20 sec • 1 pt

Which ones are valid names for javascript files?

my_script.js

myscript.javascript

myScript.js

my-script.js

2.

MULTIPLE SELECT QUESTION

20 sec • 1 pt

Choose the correct way to declare variables

myvariable

my_variable

my-variable

myVariable

3.

MULTIPLE SELECT QUESTION

20 sec • 1 pt

Possible ways to declare a constant

const myconst

const myConst

const MYCONST

const my-cosnt

4.

MULTIPLE SELECT QUESTION

20 sec • 1 pt

Media Image

what's wrong with this code?

More than 2 spaces

Function name in UpperCamelCase

Spaces between operands and operator '+'

Parameter name

Missing comments

5.

MULTIPLE SELECT QUESTION

20 sec • 1 pt

Media Image

What's wrong with this code?

String with double quotes

More than 2 spaces

Braces are in the wrong position

Parameters names

6.

MULTIPLE SELECT QUESTION

20 sec • 1 pt

Media Image

What is wrong in the following JSDoc comment?

There is nothing wrong

The variable has to be between braces

The function does not return a number

The first line of the comment does not have a tag

7.

MULTIPLE SELECT QUESTION

20 sec • 1 pt

What should we always do in our JavaScript code?

Add head comments

Add 'use strict'

Follow the Google style guide

Use ' @ts-check '