Compare commits

..

No commits in common. "6ba3106240c6bc0acabc5c7416ab92d324bdfe54" and "ef497cbc5e363afa47a9edd300e8d1a1b956b0b9" have entirely different histories.

4 changed files with 0 additions and 24 deletions

View File

@ -61,11 +61,6 @@ indent_size = 4
indent_style = tab
indent_size = 4
# GameMaker
[*.gml]
indent_style = tab
indent_size = 4
## for this repo
[~/SSH/config]
indent_style = tab

View File

@ -1,8 +0,0 @@
/// @description Fullscreen toggle
if window_get_fullscreen() {
window_set_fullscreen(false);
}
else {
window_set_fullscreen(true);
}

View File

@ -1,8 +0,0 @@
const object1 = {
a: 'somestring',
b: 42
};
for (const [key, value] of Object.entries(object1)) {
console.log(`${key}: ${value}`);
}

View File

@ -8,9 +8,6 @@
- [Add DOM Elements](addElements.js) - Добавление элементов в DOM
- [Add Class](addClass.js) - Добавление/Удаление классов
## Перебор элементов
- [Object.entries()](Object.entries.js) - Перебор объектов, ассоционных массивов
## Requests
- [fetch](fetch.js) - Fetch запрос JSON данных
- [xhr](xhrPostForm.js) - отправка формы POST запросом используя XHR