Digital Tech and Innovations Javascript Fundamentals Test Flashcards
What is the writing inside parenthesis called
An argument
How do you make a comment javascript
//___
How do you emphasize text
is this javascript or html?
<em></em> html
how do you bold something?
Is this html or java?
<b></b> html
What is a string literal
Anything in quotes
What does string in string literal mean
Series of characters, they don’t havre to make sense
What is Parenthisis and what is brackets
()
[]
What is a method
A specific tool that does something extremely specififc (eg document.write())
Everything inside partenthisis is called an ___
Argument
What is variable declaration
When you declare or write a variable
How do you declare a variable of var a
var a;
What is variable initialization
Defining a varibale
How do you do variable initilization of var a
var a = poo;
A variable that does not have a value is ____
Undefined
Can you declare and initialize at the same time
Yes
What are camel cases
lower case then upper case letters to read something easier
does case matter
yes
Can you put spaces in variables
no
Can variables begin with a number
no