JavaScript-Style

JavaScript-Style

1st - 4th Grade

7 Qs

quiz-placeholder

Similar activities

A plus you can get this right

A plus you can get this right

1st - 12th Grade

3 Qs

The Measuring Length Rules

The Measuring Length Rules

1st - 2nd Grade

10 Qs

Graphing Checklist

Graphing Checklist

4th - 8th Grade

11 Qs

Programming Basics Quiz

Programming Basics Quiz

3rd Grade

7 Qs

Trắc nghiệm tin 8

Trắc nghiệm tin 8

1st Grade

10 Qs

trollolololololololol

trollolololololololol

3rd - 5th Grade

10 Qs

Intro to Python

Intro to Python

KG - University

10 Qs

Recuperação de Pensamento Computacional

Recuperação de Pensamento Computacional

1st Grade - University

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