JavaScript Basics: Fundamental Syntax, Part 1 Flashcards
1
Q
equal sign
A
- assignment operator
- assigning text to inner html (right assigned to left side)
2
Q
note
A
- dots separate aspects of JavaScript objects
- case sensitive
- AddParagraphText is different from addParagraphhText
- gEtElementById is different from fetElement ID
3
Q
Type in the assignment operator in JavaScript
A
= (equal sign)
4
Q
JavaScript statements
A
- are terminated with a semicolon (;)
- there are some exceptions
5
Q
What punctuation is used to conclude a JavaScript statement?
A
; (semicolon)