const buildCounter() {
let value = 0;
return function() {
return value++;
}
}
const counter1 = buildCounter();
const counter2 = buildCounter();
console.log(counter1()); // 0
console.log(counter1()); // 1
console.log(counter2()); // 0
console.log(counter1()); // 2
console.log(counter1()); // 3
console.log(counter2()); // 1
function withPrefix(prefix) {
return function(string) {
return prefix + '_' + string;
}
}
const appPrefix = withPrefix('app');
const corePrefix = withPrefix('core');
console.log(appPrefix('component')); // app_component
console.log(corePrefix('component')); // core_component
const withPrefix = prefix => string => prefix + '+' + string;
Старалась верстать адаптивно.
@media all and (max-width: 1024px) {
html и css уже за плечами
Да в том-то и дело, что это сухие примеры, от которых у многих новичков череп взрывается, так как слишком много информации на минимальный объем текста.