Javascript Overview and Syntax Flashcards

1
Q

Why is placing script in the bottom good?

A

It improves the performance because the download and execution of the script blocks the page’s rendering

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

True or false:

”/* pluhhh
pluh pluh
pluh*/”

Is that a multi-line comment?

A

True

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

True or False: Variables “pluhPluh” and “Pluhpluh” are considered the same variable

A

False

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Does this follow proper coding conventions: pluhPluh = pluhPluh + 1

A

It does follow proper coding conventions

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

What is console.log()

A

It can be used to output the message

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

What is the initial name of JS?

A

Livescript

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

True or False: You should not end statements with a semicolon

A

False

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

What are the pros and cons of external script?

A

Pros:
The use of external script file can be applied to other websites, unlike the embedded script.
Cons:
It can lower the performance of the website

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

Where does the symbol for single line comments used at?

A

It is used at the beginning of the line

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

Where is the script usually placed?

A

The end of the document / right before the </body> tag

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

How to use Javascript for website programs?

A
<script>

</script>
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

What is an external script?

A
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

What is document.write()

A

It is used to write the content to the current document only while the document is being parsed.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

What are the common rules of syntax?

A
  1. Case-sensitivity
  2. White/empty space would be ignored
  3. Naming Variables should be “camelCase”
  4. Avoid lines longer than 80 characters for readability
  5. Put spaces around operators for easier interpretations
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

What is an embedded script?

A
<script>
Your code here
</script>
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

True or False: Data on Javascript is typed loosely

17
Q

What symbols do the single line comments use?

18
Q

Does the variable “pluhPluh” follow the rules of naming variables?

19
Q

What is the difference between console.log() and document.write()

A

console.log() types it in the output console, but the document.write() outputs it in the main document (like the page where you see html and css stuff)