var x = 10;
function quiz() {
console.log(x);
var x = 20;
}
quiz();6 months ago • Easy HTML Learner
var x = 10;
function quiz() {
console.log(x);
var x = 20;
}
quiz();10
20
undefined
ReferenceError
5 answered
0
0
7 months ago • Easy HTML Learner
console.log(true + true + false);
0
1
2
01
9 answered
0
0
8 months ago • Easy HTML Learner
const obj = {
value: 10,
show: () => {
console.log(this.value);
}
};
obj.show();undefined
10
4 answered
0
0
8 months ago • Easy HTML Learner
What will this code return? console.log(2 + "2");
4
22
Error
NaN
9 answered
0
0
2 years ago • Easy HTML Learner
Watch my latest videos on food website and basic layout of a website https://youtu.be/b8YMlQqTnP4 https://youtu.be/tQ6Hxhwjyw0
3
0
3 years ago • Easy HTML Learner
Want to see videos on??
Responsive website
React
JavaScript
HTML CSS
65 votes
3
0
3 years ago • Easy HTML Learner
Which one is correct about css box model
content, padding, border, outline
content, padding, radius, margin
content, width, border, margin
content, padding, border, margin
40 votes
2
0
4 years ago • Easy HTML Learner
Which one is not a value of type attribute in input tag?
<input type="radio" />
<input type="text" />
<input type="label" />
<input type="password" />
69 votes
5
0
4 years ago • Easy HTML Learner
Which attribute is used to display the tooltip on the screen?
src
href
title
alt
37 votes
4
0