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

Why is it not submitting

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

let _code = 'I love coding';
console.log( 'love coding')

let num = 007;
console.log(007);

let $123 = 100;
console.log(100);
by

1 Answer

iamabhishek
Try this:

var bestApp = 'studytonight';
let _code = 'I love coding';
let num = 007;
let $123 = 100;
console.log(bestApp);
console.log(_code);
console.log(num);
console.log($123);

Login / Signup to Answer the Question.