JS Periksa jenis yang disimpan dalam variabel nama di JS

const name = "Boris";

typeof(name);
// => 'string'
Curious Chamois