例1:JSON.stringify()を使用してオブジェクトを文字列に変換する
// program to convert an object to a string
const person = {
name: 'Jack',
age: 27
}
const result = JSON.stringify(person);
console.log(result);
console.log(typeof result);
出力
{"name":"Jack","age":27} string
上記の例では、 JSON.stringify()
メソッドは、オブジェクトを文字列に変換するために使用されます。
ザ・ typeof
演算子はのデータ型を指定します 結果 変数。
例2:String()を使用してオブジェクトを文字列に変換する
// program to convert an object to a string
const person = {
name: 'Jack',
age: 27
}
const result1 = String(person);
const result2 = String(person['name']);
console.log(result1);
console.log(result2);
console.log(typeof result1);
出力
[object Object] Jack string
上記の例では、 String()
関数は、オブジェクトの値を文字列に変換します。
使用する場合 String()
上の機能 Object
、変換された結果は [object Object]。
ザ・ typeof
演算子はのデータ型を指定します 結果 変数。
Hope this helps!
Source link