test.js 1.43 KB
const test = [
    {"name": "name1", "view": 999, "game": "game1" ,"url": "https://www.twitch.tv", "thumbnail": "https://upload.wikimedia.org/wikipedia/commons/2/26/Twitch_logo.svg", "isPlay": true},
    {"name": "name2", "view": 123124124, "game": "game2" , "url": "https://www.twitch.tv"},
    {"name": "name1", "view": 999, "game": "game1" ,"url": "https://www.twitch.tv", "thumbnail": "https://upload.wikimedia.org/wikipedia/commons/2/26/Twitch_logo.svg"},
    {"name": "name2", "view": 123124124, "game": "game2" , "url": "https://www.twitch.tv"},
    {"name": "name1", "view": 999, "game": "game1" ,"url": "https://www.twitch.tv", "thumbnail": "https://upload.wikimedia.org/wikipedia/commons/2/26/Twitch_logo.svg"},
    {"name": "name2", "view": 123124124, "game": "game2" , "url": "https://www.twitch.tv"},
    {"name": "name1", "view": 999, "game": "game1" ,"url": "https://www.twitch.tv", "thumbnail": "https://upload.wikimedia.org/wikipedia/commons/2/26/Twitch_logo.svg"},
    {"name": "name2", "view": 123124124, "game": "game2" , "url": "https://www.twitch.tv"},
    {"name": "name1", "view": 999, "game": "game1" ,"url": "https://www.twitch.tv", "thumbnail": "https://upload.wikimedia.org/wikipedia/commons/2/26/Twitch_logo.svg"},
    {"name": "name2", "view": 123124124, "game": "game2" , "url": "https://www.twitch.tv"},
]

console.log(test[1])
test[1].isPlay = false
const whatPlay = (elem) => elem.isPlay === true;
console.log(test.findIndex(whatPlay))