JS Sprawdź typ przechowywany w zmiennej nazwy w JS

const name = "Boris";

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