Variables and data types Flashcards
JS in loosely typed. What does that mean?
It means that a variable can be defined with just a name. Things like lenght and type are not declared
Are variables case sensitive
Yes
What must variables begin with
a character
What value will an variable with an unassigned value return?
Undefined
How many primitive data types are in JS?
Undefined
Number
String
Boolean
Object
Structural type
Give an example of an undefined data type
Var car;
Give an example of a number data type
var myweight = 20;
Give an example of a string data type
var dogname = “Isa”;
Give an example of a boolean data type
var theswitch = false;
Give an example of a number array data type
varnumarray = [1,3,5,7,9];
Give an example of an object data type
var myobj = {firstname:”Bob”,lastname:”Heide”};
Why are JS types considered dynamic?
Because the type changes based on the value of the var. For example var myname = “bob”; is a strin but I can then say myname = 3; and that changes the type to numeric
How can i display the type of a variable?
console.log(typeof myname);
What is the data type of the following statement
var fruit = “apple” + 3;
The type is string because it is set by the first part of the value which is a string
What would the value of the variable be? What would it’s type be?
var mynum = 5 + 3 + “gift”;
The answer is 8gift.
JavaScript moves left to right. In this case the numbers are treated as math and then the string is added. This makes the type string
What is Global scope in JS?
A variable defined outside of an actual function. For example
var car = “BMW”;
Function showCar( ) {
console.log(car);
}
showCar( );
Car is a global variable available in the function
What is local scope in JS?
function showCar() {
var car = “BWM”;
console.log(car);
}
showCar(); /*will list the car /
console.log(car); /this will fail because car was created as a local var not a global. Outside of the function it does not exist
What is meant by local scope:block scope?
Think of this like the “let” statement in ABAP. The block scope is local to the keyword if you will. For example
function test() {
if (true)
var1 = “BMW”;
let car2 = “AUDI”;
}
In the above scenario car2 is only valid within the if statement in which it is declared
In modern syntax what two new ways of declaring variables exist?
let and const
These allow us to create block scope variables
What is the difference between let and const
think of const as a constant in ABAP. It is declared with a value and the value cannot be changed.
const firstName = “John” will always be John. You can’t then say
firstName = “Bob”
What string method returns the length of the string?
let alpha = “abcdef”;
console.log(‘String length is ${alphabet.length}’);
What string method finds a value in a string?
let alpha = “Where ever you go there you are”;
console.log(‘Go lies at index: ${alpha.indexOf(“go”)}’);
What method allows the reduction of decimal places?
let num1 = 5.1234;
console.log(num1.toFixed(2)); // 5.12
How can a string be converted to a number and vice versa
let num1 = 14.33
console.log(typeof num1);
let numString = num1.toString();
let num2 = Number(num1)
-this example is from page 23 of the book and makes little sense