Скачайте бесплатный шаблон «Черно-синяя меланхолия». Строгий шаблон в темных тонах, с горизонтальным...
Скачайте бесплатно шаблон html «Я сплю в спа». Приятный дизайн этого шаблона...
Скачайте бесплатно шаблон html «Я сплю в спа». Приятный дизайн этого шаблона...
var d=new Date(); document.write(«Оригинальные дата и время: «); document.write(d + « «);...
document.write(Math.min(5,10) + « «); document.write(Math.min(0,150,30,20,38) + « «); document.write(Math.min(-5,10) + « «);...
var fruits = [«Банан», «Апельсин», «Яблоко», «Манго»]; document.write(fruits.shift() + « «); document.write(fruits...
document.write(Math.round(0.60) + « «); document.write(Math.round(0.50) + « «); document.write(Math.round(0.49) + « «);...
var fruits = [«Банан», «Апельсин», «Яблоко», «Манго»]; document.write(fruits.pop() + « «); document.write(fruits...
var str=»Hello world!»; document.write(str.indexOf(«d») + « «); document.write(str.indexOf(«WORLD») + « «); document.write(str.indexOf(«world»));...
document.write(Math.max(5,10) + « «); document.write(Math.max(0,150,30,20,38) + « «); document.write(Math.max(-5,10) + « «);...