JavaScript-Style

JavaScript-Style

1st - 4th Grade

7 Qs

quiz-placeholder

Similar activities

Programming Basics Quiz

Programming Basics Quiz

3rd Grade

7 Qs

trollolololololololol

trollolololololololol

3rd - 5th Grade

10 Qs

(Equivalent) Fractions Check

(Equivalent) Fractions Check

4th Grade

10 Qs

Basic concepts in Econometrics

Basic concepts in Econometrics

3rd Grade

10 Qs

1 de noviembe Cx6

1 de noviembe Cx6

1st - 5th Grade

9 Qs

Variables in Scratch

Variables in Scratch

3rd - 6th Grade

10 Qs

Práctica sobre variables, tablas de conteo y gráficos.

Práctica sobre variables, tablas de conteo y gráficos.

3rd Grade

10 Qs

The Measuring Length Rules

The Measuring Length Rules

1st - 2nd Grade

10 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 '