Signup/Sign In
Ask Question
Not satisfied by the Answer? Still looking for a better solution?

Lvl.2 Les.4 JS & Lvl.9 Les.4 HTML

I had wrote same code as told in the above lessons but again getting same errors like in HTML add Div Tag & in JAVASCRIPT log Boolean value true. Even I had following the instructions so carefully.
by

2 Answers

kshitijrana14
Try this one level 2 lesson 4 javascript

// create variables and log their values

var bestApp='I love studytonight';
console.log(bestApp);

let myNum=1;
console.log(myNum);


console.log(true);

try this one level 9 lesson 4

<!DOCTYPE html>
<html>
<head></head>
<title>My Login Form </title>
<body>
<h1>Login Form</h1>
<form>
<div>
<label>Email</label>
<input type="email" name="email"/>
</div>
</form>
</body>
</html>
Selinazd0y9
Again Thank you very much for helping me.

Login / Signup to Answer the Question.