我有一个如下所示的数组:
students1 = Array(423.5482, 425.6641)
现在我想得到这个数组的长度。但是,如果我试试这个:
MsgBox(students1.Length)
我得到了一个需要对象的错误。虽然我怎么能得到这个长度?
答案 0 :(得分:7)
使用UBound和Lbound
if (browser["notifications"]) {
console.log('Notifications exist!');
browser.notifications.create({
"type": "basic",
"iconUrl": browser.extension.getURL("icons/icon-48.png"),
"title": "test",
"message": "test"
});
}
else {
//it always executes this part :/
console.log('notifications do not exist');
console.log(browser);
}