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:" переменную? Или это нельзя реализовать?