Compare commits

...

2 Commits

Author SHA1 Message Date
6ba3106240 forEach for objects 2023-01-09 01:41:52 +03:00
00e0f5b1a1 fullscreen toggle 2023-01-09 01:41:08 +03:00
4 changed files with 24 additions and 0 deletions

View File

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

View File

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

View File

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

View File

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