CSS
- 20 ответов
- 0 вопросов
18
Вклад в тег
// Числовой тип
const typeNumber = 5;
// Строковый тип
const typeString = "Строка";
// Булевый тип
const typeBoolean = true
// Null
const typeNull = null;
// undefined
const typeUndefined = underfined;
// Symbol(новый тип в es6)
const typeSymbol = Symbol()
flex-grow: 1;
<!DOCTYPE html>
<html>
<head>
</head>
<body>
<header></header>
<main>
/* И так далее */
</main>
</body>
</html>