[JS]typeof演算子
2011 ワード
タイプ演算子
type of演算子は、演算子のデータ型によって文字列を返します.
例
let age = 27;
console.log(typeof age); // expected output: "number"
let myname = 'leezy';
console.log(typeof myname); // expected output: "string"
let isAdult = true;
console.log(typeof isAdult); // expected output: "boolean"
使用方法
type of演算子は被演算子の前にあります.
リポジトリにインポートするオブジェクトまたは元の値を表す式をパラメータとします.
typeof age
typeof(age)
Reference
この問題について([JS]typeof演算子), 我々は、より多くの情報をここで見つけました https://velog.io/@ssumniee/typeof-연산자テキストは自由に共有またはコピーできます。ただし、このドキュメントのURLは参考URLとして残しておいてください。
Collection and Share based on the CC Protocol