- From: Kenneth Rohde Christiansen via GitHub <sysbot+gh@w3.org>
- Date: Thu, 09 Aug 2018 09:29:37 +0000
- To: public-web-nfc@w3.org
I don't see the point in having it nullable either. You can make it absent or add undefined instead.
Actually if you mark something as undefined, it will still be iterable.
```
a = { hest: null, nonhest: undefined }
for (var entry in a) { console.log(entry) }
VM214:1 hest
VM214:1 nonhest
```
--
GitHub Notification of comment by kenchris
Please view or discuss this issue at https://github.com/w3c/web-nfc/pull/150#issuecomment-411696958 using your GitHub account
Received on Thursday, 9 August 2018 09:29:45 UTC