JavaScript-Style

JavaScript-Style

1st - 4th Grade

7 Qs

quiz-placeholder

Similar activities

Prueba de diagnóstico Algebra

Prueba de diagnóstico Algebra

1st - 3rd Grade

10 Qs

Probabilidades Juego de Prueba

Probabilidades Juego de Prueba

1st Grade

12 Qs

Multiplicación y División 5to

Multiplicación y División 5to

1st Grade

10 Qs

Epic quiz on some stuff

Epic quiz on some stuff

KG - 6th Grade

10 Qs

Capacity 3rd

Capacity 3rd

1st - 3rd Grade

10 Qs

Year 3 CCS Measurement

Year 3 CCS Measurement

2nd - 3rd Grade

12 Qs

Missing Part Word Problems

Missing Part Word Problems

1st - 2nd Grade

10 Qs

Scratch 2 quiz!

Scratch 2 quiz!

4th Grade

10 Qs

JavaScript-Style

JavaScript-Style

Assessment

Quiz

Mathematics

1st - 4th Grade

Practice Problem

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 '