Пример | Sample
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
458B

  1. ДобавитьСтрок = мир =>
  2. {
  3. document.body.innerHTML += "<p>Больше строк = лучше</p>";
  4. document.body.innerHTML += "<p>More strings the better</p>"
  5. }
  6. // // // //
  7. ПоприветствоватьМир = function()
  8. {
  9. console.log("Привет, мир!");
  10. console.log("Hello, world!");
  11. document.body.innerHTML += "<h1>Привет, мир!</h1>";
  12. document.body.innerHTML += "<h1>Hello, world!</h1>";
  13. };