- 主题:js语法问题
function user() {
this.name = 20;
};
var b = new user();
Object.defineProperty(b, 'name', {
writable: false,
value: 'ooo'
});
console.log(b.name = 50);
这句代码为什么会输出50?
--
修改:ename FROM 221.221.22.*
FROM 221.221.22.*
b.name = 50,这句不是赋值么?
--
FROM 123.114.32.*
assignment expressions return the right-hand value
you can find that in ES5 standard, I do not remember exactly which page
【 在 ename (ename) 的大作中提到: 】
: function b() {
: this.name = 20;
: };
: ...................
--
FROM 180.173.119.*
错误太初级了。。。。b被声明两次。
【 在 ename (ename) 的大作中提到: 】
: function b() {
: this.name = 20;
: };
: ...................
--
FROM 183.95.135.*
已经修改对象名,谢谢。
但依然返回这个。
【 在 ottffsse 的大作中提到: 】
: 错误太初级了。。。。b被声明两次。
:
--
FROM 221.221.22.*
a=b最后的返回值是a。。似乎所有语言都这样吧。。
前面那段我不知道在干啥
【 在 ename 的大作中提到: 】
: function user() {
: this.name = 20;
: };
: ...................
--
FROM 183.37.207.*
b.name=50; //this expression "b.name=50" is evaluated as 50, that is, the right side to the equal operator. 'cuz b.name is not writable, b.name, however, is unchanged
//if you run console.log(b.name) again, you will see "ooo", not 50.
【 在 ename (ename) 的大作中提到: 】
: function user() {
: this.name = 20;
: };
: ...................
--
FROM 183.95.135.*
b的name属性值还是ooo啊
console打印的是赋值语句中所赋的那个值吧
--
FROM 182.48.99.*
就是说当b.name不可以写时,这句赋值语句返回的是右侧的值?
【 在 ottffsse 的大作中提到: 】
: b.name=50; //this expression "b.name=50" is evaluated as 50, that is, the right side to the equal operator. 'cuz b.name is not writable, b.name, however, is unchanged
: //if you run console.log(b.name) again, you will see "ooo", not 50.
:
--
FROM 221.221.22.*
always, no matter b.name is writable or not, per standard.
【 在 ename (ename) 的大作中提到: 】
: 就是说当b.name不可以写时,这句赋值语句返回的是右侧的值?
--
FROM 183.95.135.*