// typeof object
Результат от загрузки json:
fetch("users.php")
.then(res => res.json())
.then(
(result) => {
console.log( result.users ); // [{…}, {…}, {…}]
console.log( typeof(result.users) ); //object
},
Потому что массив это обьект
array instance of Array
Обсуждают сегодня