// Числовой тип
const typeNumber = 5;
// Строковый тип
const typeString = "Строка";
// Булевый тип
const typeBoolean = true
// Null
const typeNull = null;
// undefined
const typeUndefined = underfined;
// Symbol(новый тип в es6)
const typeSymbol = Symbol()