RESULT

Who Made Javascript
Brendan Eich
James Gosling
Dennis Richie
Niklaus Wirth

How do you declare a variable in Javascript
vars name
const name
consts name
lets name

What is the correct syntax to log out data on the browser?
console.log()
log.console()
console.log{}
log.data()

Which one of these is a javascript package manager
function addNum{}
function addNum()
function addNum{)
function addNum(){}

Which one of these is a javascript package manager
Node.js
Typescript
Babel
npm

What is the correct for loop syntax?
for(let i = 0; i > 0; i++);
for(let i = 0, i > 0; i++);
or(let i = 0; i > 0; i+=);
for(let i = 0; i > 0; i=++);

What is the function of Array object that runs through each element of the Array?
filter()
forIn()
concat()
forEach()

What will be the output const one = 1;
if(one === 1)
{
console.log(true)
};
else
{
console.log(false)
};
True
False

What will be the result function addNum(num1, num2)
{
return num1 + num2
}
addNum(2,4)
8
undefined
6
0

Which of the following function of String object returns the capitalized string?
toLocaleUpperCase()
toUpperCase()
toString()
subString()
REPEAT