Hey programmer,

I make free programming tutorial by my learning experience as a cs student for beginner to advanced level
That include Java for beginner, Advance Java, Python, Javascript, Data structure, Html , CSS , C,C++ and many more stuff.

You can find awesome programming lesson here! Also expect programming tips and tricks that will take your coding skills to the next level.

If my videos haved help you in way do support 🙏


Code World

let x = new String("John");
let y = new String("John");


Console.log(x==y);
Console.log(x===y);

2 years ago | [YT] | 0

Code World

let x = "John";
let y = new String("John");

Console.log(x===y);

2 years ago | [YT] | 1

Code World

let x = "John";
let y = new String("John");

Console.log(x==y);

2 years ago | [YT] | 0

Code World

Q. Which is the correct Declaration of variable in JavaScript? 🤔

2 years ago | [YT] | 0

Code World

Which one is correct Declaration of variable in JavaScript?🤔

2 years ago | [YT] | 0

Code World

Q. What will be the output of the following Statements in JavaScript?

console.log(3+2+"5");

2 years ago | [YT] | 4

Code World

Q. What will be the output of the following Statements in JavaScript?

console.log("5"+3+2);

2 years ago | [YT] | 2

Code World

Q. Javascript questions.

var myName = "CodeWorld!";
console.log(myName);

var myName;
console.log(myName);

# Comments the answer

2 years ago (edited) | [YT] | 4

Code World

Q. Javascript Re-Declaration Variable which one is Correct ?

2 years ago | [YT] | 1