What are the 7 JavaScipt types?
234
Number
“hello world”
String
true or false
Boolean
if(name === “billy) { return “hello”};
If Statements
if(name ===”billy”) {
return “hello” } else {
return “world”};
If/Else Statements
if(name ===”billy”) {
return “hello” } else if {
return “world”} else {
return “helloworld” }
Else/If Statements
If (firstname ===”bob” && lastName ===”smith” {
return “bobsmith” };
Ternary Operator