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

Level 3 Lesson 7...Javascript typeof..

let john = true;
let thor = 'asgard';
let falcon = 1001;
let ghost;

console.log(typeof john);


console.log(typeof thor);


console.log(typeof falcon);


console.log(typeof ghost);

What am I doing wrong?
by

2 Answers

iamabhishek
Hey, the code that you are trying, is correct, may be some issue with the application showed you 'Try again!' message.

The application is working fine now, please try now.
NeelaPrasad
Hey, HI The code your trying is correct.But,you have to change the order of the output.

Ans:
let john = true;
let thor = 'asgard';
let falcon = 1001;
let ghost;


console.log(typeof ghost);
console.log(typeof john);
console.log(typeof thor);
console.log(typeof falcon);

Login / Signup to Answer the Question.