Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
Lära Boolean 2/4 | Data Types and Variables
Introduction to JavaScript

book
Boolean 2/4

Boolean Data Type

We use the typeof operator to check the data type of variables, for example.

let isRaining = true;
console.log(typeof isRaining);
// or like this
console.log(typeof(isRaining));
1234
let isRaining = true; console.log(typeof isRaining); // or like this console.log(typeof(isRaining));
copy

As you can see in the above code we declared a variable named isRaining with the value of true, and its data type is boolean as expected.

Uppgift

Swipe to start coding

Declare a variable with the name isSunRises and set its value as true. Then check the type of isSunRises by using typeof() and display the output.

Lösning

let isSunRises = true;
console.log(typeof(isSunRises));

Var allt tydligt?

Hur kan vi förbättra det?

Tack för dina kommentarer!

Avsnitt 3. Kapitel 16
single

single


Fråga AI

expand

Fråga AI

ChatGPT

Fråga vad du vill eller prova någon av de föreslagna frågorna för att starta vårt samtal

We use cookies to make your experience better!
some-alt