Claude Pache (2013-08-30T17:34:21.000Z)
Le 30 août 2013 à 18:54, "Mark S. Miller" <erights at google.com> a écrit :

> It seems we have legacy saying that "name" should be writable.
> 

Really? Just tried in the console of the latest stable versions of Firefox, Safari, Chrome and IE:

```
Object.getOwnPropertyDescriptor(function() {}, 'name')
```

Firefox, Safari and Chrome: `{value: "", writable: false, enumerable: false, configurable: false}`
IE: `undefined`

—Claude
domenic at domenicdenicola.com (2013-09-08T00:26:28.728Z)
Le 30 août 2013 à 18:54, "Mark S. Miller" <erights at google.com> a écrit :

> It seems we have legacy saying that "name" should be writable.
> 

Really? Just tried in the console of the latest stable versions of Firefox, Safari, Chrome and IE:

```js
Object.getOwnPropertyDescriptor(function() {}, 'name')
```

Firefox, Safari and Chrome: `{value: "", writable: false, enumerable: false, configurable: false}`
IE: `undefined`