What are two different kinds of programming languages? What are their differences?
What are two different modes of compilation?
How is JS executed?
What is NodeJS?
What is Automatic Semicolon Insertion?
How is JS typed?
Variable scope
With what can variables start?
What type are arrays of?
Arrays are of type object
How do I get the first 5 chars of a string / array?
How do I insert a variable into an string?
What is the difference between equal ans strict equal?
What is the 4 different syntax of for loops?
for (let i = 1; i <= 10; i++){}
let i = 5;
let factorial = 1;
for (let j = i; j > 0; j--) {
factorial *= j;
}
How does the docstring of functions look like?
What is the difference of call-by-value and call-by-reference?
How do I make default values of input parameters?
What is function hoisting?
How are modules immported in nodejs?
How can you write your own modules?
What are packages?
What are modules?
Singel JS file, libary or function/class
Last changed10 months ago