Summary: Introduction To Javascript
- This + 400k other summaries
- A unique study and practice tool
- Never study anything twice again
- Get the grades you hope for
- 100% sure, 100% understanding
Read the summary and the most important questions on Introduction to JavaScript
-
1 Introduction
This is a preview. There are 1 more flashcards available for chapter 1
Show more cards here -
1.1.1 What is JavaScript?
This is a preview. There are 1 more flashcards available for chapter 1.1.1
Show more cards here -
Why is JavaScript often the first language learned by self-taught coders?
JavaScript remains at the core of web development -
1.1.2 Console
This is a preview. There are 2 more flashcards available for chapter 1.1.2
Show more cards here -
What is a console?
A panel that displays important messages for developers (like errors) -
Much of the work the computer does with our code is invisible for us by default. What can we do to see things appear on our screen?
Print, or log, to our console directly -
Where does the console keyword refer to in JavaScript?
An object (a collection of data and actions) that we can use in our actions -
What happens with the code we put in console.log()?
The code inside wil get printed (or logged) to the console -
1.1.3 Comments
This is a preview. There are 2 more flashcards available for chapter 1.1.3
Show more cards here -
Why is it useful not leave notes in your code?
The code can quickly become difficult to understand when we return to it -
What do comments in JavaScript describe?
- Explain what the code is doing
- Leave instructions for other developers using the code
- Other useful annotations
- Explain what the code is doing
-
What are the two types of code comments in JavaScript?
- Single line comment: comments out a single line with two forward slashes // in front of the line
- Multi line comment: comment out multiple lines and is denoted with /* to begin the comment, and */ to end the comment
- Single line comment: comments out a single line with two forward slashes // in front of the line
-
1.1.4 Datatypes
This is a preview. There are 8 more flashcards available for chapter 1.1.4
Show more cards here -
What are the seven fundamental data types in JavaScript?
- Number
- String
- Boolean
- Null
- Undefined
- Symbol
- Object
- Number
-
What does the data type Numbers represent?
Any number, including decimals (4,1516,23.42 )
- Higher grades + faster learning
- Never study anything twice
- 100% sure, 100% understanding
Topics related to Summary: Introduction To Javascript
-
Introduction - Introduction to Javascript - Datatypes
-
Introduction - Introduction to Javascript - Review
-
Introduction - Variables - Creat a Variable: var
-
Introduction - Variables - String Interpolation
-
Conditionals - Comparison Operators
-
Conditionals - Review
-
Functions - Review Functions
-
Loops - The For Loop
-
Iterators - High-Order Functions
-
Objects - Property Assignment