Basic Syntax Flashcards
JS: console.log()
‘Print’ to screen
JS: .length
Return the length of a string variable
JS: . toUpperCase()
Change string to capitals
JS: . startsWith(n)
Returns a Boolean depending on your input value -(n)
JS: .trim()
Removes white space!
Also trimEnd or trimStart
JS: Math.random()
Return a random number between 0 and <1
JS: Math.floor()
Round down a decimal to nearest int
JS: Math.ceil(Math.random() * n);
Round up a decimal to nearest int with random number gen
JS: Number.isInteger()
Checks variable (number) and Returns a Boolean
What are the 7 fundamental data types in JS?
Strings
Numbers
Booleans
Null
Undefined
Symbol
Object
JS: let var =
const var. =
Use to assign a variable
JS: let
Signals a variable can be reassigned a new value
JS: const
Assign an immutable variable
JS: some string with ${someVar) included
;
String interpolating (bit like a python f-string)
JS: typeof
Eg. console.log(typeof myVar);
To return the data type of the stored value.
JS: if (condition) {
//execute this code
} else {
// execute this code
}
Basic conditional
JS: What’s the ‘and’ operator
&&
JS: What’s the ‘or’ operator?
||
JS: What’s the ‘not’ operator?
!
JS: Give the ‘falsy’ values.
0 , “” , null, undefined, NaN
JS: let VAR = VAR || ‘fresh input’
Short circuit evaluation
JS: VAR ? execute code : execute code;
Ternary operator
Checks if VAR is true then else
JS: const someVar = function () {
}
A function expression (anonymous function)
JS: const someVar = () => {
}
An arrow function
JS: const = someVar = param => num * num;
Concise body function
() removed from someVar
{} removed since only a single line function
Return is implicit
Would otherwise like like
const someVar = (num) => {
return num * num;
};
JS: STRING[n];
Access an index of a string
JS: STRING.slice(indexinc, indexex);
Get a slice (range of characters) from a string.
NB: lower index is inclusive, upper is exclusive
JS: array.push(INPUT);
Add an element to the end of an array
Returns the new length
JS: array.unshift(INPUT);
Adds an element to the start of an array.
JS: array.pop();
Remove the last element from an array. Method returns the removed value.
JS: array.shift()
Removes first element (value not index) from an array return the value
JS: new array = array1.concat(array2);
Combine 2 arrays to create new (and leaving the old ones unchanged
JS: array .indexOf(INPUT);
find the index location of the input value
JS: array.join();
Turn the array into a string. You can input your own separator choice as an argument: e.g .join(“, “)
JS: array.includes(INPUT)
returns true or false
JS: array. revers();
Modifies the original! Otherwise self explanatory
JS: array.sort((a, b) => a -b);
modifies the original sort ascending or do b- a for descending
JS: array.slice(index, index)
creates a new array from the slice, end index is not included)
JS: array.splice(index, count, optionalItem);
Removes ‘count’ elements from array starting at ‘index’ or from 0 index if no index included.
optionalItem added to the array from indeed
JS: obj[‘key n’];
Or obj.keyn (if valid identifier)
Retrieve a value from an object but its key
JS: object[‘key’] = value;
Or. object.key = value;
Add or replace a key-value pair
JS: Object. keys(OBJECT);
Returns the keys of the object as an array
JS: Object.entries(OBJECT);
returns a 2d array of key-value pairs
JS: JSON.stringify(nestedObject);
Returns a JSON represented string of nested object
JS: setTimeout(yourArg, msdelay)
Delay function. Second argument is delay in milliseconds.i.e 1000 for 1 second
JS: passing a function as an argument?
Don’t use ()
JS: ARRAY.find(item => itemCRITERA);
Find the first element in a array that matches criteria
JS: ARRAY.filter(item => itemCRITERA);
Returns a new array with elements that pass the test implemented by the function
JS: ARRAY.map( ITEM => function content);
Returns a new array with the results of function on every element
JS: Math.hypot(dx, dy);
Find the hypotenuse; straight line distance between points x and y
JS: array.indexOf(“element”)(
Returns the index num of the element
JS. array.splice (start index, num of indices, replacement)
Swap out part of an array
JS: array.reduce((acc, curr) => acc + curr, 0)
Executes a reducer function on each element resulting in single value output
array.forEach(item => function)
Execute function on each item
Object.assign(target, source)
Copies (and overwrites if existing values) properties from source object to target, then returns the target