“Как создать веб -сайт с JavaScript” Ответ

Создайте простой веб -сайт, используя JavaScript

<!-- How to Import a JS File --><script src="pathToFile/fileName.js"></script><!-- How to Write a Function -->function functionName() {	// body of the function}<!-- How to Change CSS of an ID on the Page -->document.getElementById("idName").style.property = 'value';<!-- How to Run a Function on Button Click -->< button onclick="functionName()">buttonName</button><!-- Create a Variable -->var nameOfVariable = value;<!-- How to Use an If-Statement -->if (condition) {	// do this if the condition is true}<!-- How to Set Text of an HTML Element in JS -->document.getElementById("idName").innerHTML = 'newTextInElt'
Grumpy Gnu

Как создать веб -сайт с JavaScript

To create a website using Javascript you must consider to use a framework like:
- React
- Angular
- Vue

Personnally I use React, Angular is a little bit messy but is good too, 
I've never deeply tried to use Vue so make your own opinion about this one !

Otherwise, you can try something like Svelte or Vanilla Javascript.
It can seems a little bit difficult but when you get it, it's easy.
Envious Echidna

Ответы похожие на “Как создать веб -сайт с JavaScript”

Вопросы похожие на “Как создать веб -сайт с JavaScript”

Больше похожих ответов на “Как создать веб -сайт с JavaScript” по JavaScript

Смотреть популярные ответы по языку

Смотреть другие языки программирования