Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
学ぶ Data Types in JavaScript | Section
JavaScript Essentials for Backend

bookData Types in JavaScript

メニューを表示するにはスワイプしてください

JavaScript works with different types of data. The most common ones are strings, numbers, and booleans.

A string is text:

const name = "John";

A number is a numeric value:

const age = 25;

A boolean represents a true or false value:

const isLoggedIn = true;

There are also two special values: null and undefined.

undefined means a variable has been declared but has no value:

let value;
console.log(value); // undefined

null is an intentional absence of value:

const data = null;

Understanding these types is important because JavaScript behaves differently depending on the type of data you are working with.

question mark

What will be the output of this code?

正しい答えを選んでください

すべて明確でしたか?

どのように改善できますか?

フィードバックありがとうございます!

セクション 1.  5

AIに質問する

expand

AIに質問する

ChatGPT

何でも質問するか、提案された質問の1つを試してチャットを始めてください

セクション 1.  5
some-alt