add load page

This commit is contained in:
Alexander Popov 2021-12-12 01:09:28 +03:00
parent 64f95bd183
commit fdd9e60361
Signed by: iiiypuk
GPG Key ID: 398FC73478D97286
2 changed files with 5 additions and 0 deletions

View File

@ -4,6 +4,7 @@
- [Arrays](arrays.js) - работа с массивами
- [Spread syntax](spread.js) - распаковка массива в аргументы
- [fetch](fetch.js) - ...
- [location.href](location.href.js) - Переход на другую страницу
## Other
- [Webpack](webpack.md) example config

View File

@ -0,0 +1,4 @@
// Перейти на нужную страницу можно с помощью JavaScript
// document.location.href = "https://www.site";
document.location.href = url.value;