Re: [ambient-light] What illuminance value should be reported for stopped sensor?

> However, spec doesn't specify what happens if developer caches 
reading and accesses it after stop is called.

Why would it? I would expect JavaScript semantics: 

```js
let raw = 1;
let reading = {
  get illuminance() {
    return raw;
  }
};

let als = {
  reading
};

let cached = als.reading;

console.log(cached.illuminance); // 1

als.reading = null;

console.log(cached.illuminance); // 1
```

-- 
GitHub Notification of comment by rwaldron
Please view or discuss this issue at 
https://github.com/w3c/ambient-light/issues/15#issuecomment-257395113 
using your GitHub account

Received on Monday, 31 October 2016 19:28:46 UTC