TIL[データ型]



データ型とは?


変数に格納されるデータ型には、Primitive(オリジナル)データ型(string、number、boolean、undefined、null、symbolなど)とObjectデータ型(function、object、arrayなど)があります.

1.文字列(string)


ORを使用して作成されたデータ型
let str1 = '문자열';
テキストがテキストに含まれている場合.
let str1 = '문자는 "문자"';
console.log(str1); // 문자는 "문자"

2.数字(number)


整数、小数点、指数を表すデータ型
let num1 = 3;
let num2 = 10.5;
let num3 = le+2; // 100
下降(床)
var num = 10.1;
Math.floor(num);
console.log(num); // 10

3.Boolean(論理)


true(真)とfalse(偽)の値を表すデータ型.
let isBoolean1 = (1 < 2);
let isBoolean2 = (1 > 2);
console.log(isBoolean1); // true 
console.log(isBoolean2); // false
6つの虚偽の値
false, null, undefined, 0, NaN, ''
コプリット[条件文#17]
function isFalsy(anything){
  return !Boolean(anything); // anything이 falsy값이면 true반환
}

4.typeofコマンド

let num = 3;
let str = 'hello';
console.log(typeof num); // number
console.log(typeof str);// string
typeofarrayは「array」ではなく「object」であることに注意してください.アリーの時はアリーisArray()と書きましょう!