var stickerTitle = sticker.getAttribute('title');
var arr = stickerTitle.split('\n').filter(str=>{return str.length > 0})
let arr2 = ['Wear: 0% - Unscratched', '50% of the proceeds from the sale of this sticker support the included players and organizations.'];
let obj = {};
for (let i = 0; i < arr.length; i += 1) {
if (arr2.includes(arr[i])) {
obj[arr[i]] = true;
}
}
if (Object.keys(obj).length){
var notification = new Notification('Notification title', {
icon: 'http://cdn.sstatic.net/stackexchange/img/logos/so/so-icon.png',
body: "Hey there! You've been notified!",
});
body: `Hey, ${userName}! You've been notified!`,
body: "Hey," + userName + "! You've been notified!",
Find more questions by tags JavaScriptNotifications
And how can you bring matches in arrays in the same console?
Some mistakes
- ezequiel commented on June 10th 19 at 16:18
Figured out the correct option:
body: Object.keys(obj)
- ezequiel commented on June 10th 19 at 16:24