1
0
mirror of https://github.com/ruanyf/es6tutorial.git synced 2025-05-24 18:32:22 +00:00

docs(proxy): edit set()

This commit is contained in:
ruanyf 2017-12-07 10:26:10 +08:00
parent 7740f5d075
commit 22c3b931dc

View File

@ -331,7 +331,7 @@ let validator = {
}
}
// 对于age以外的属性,直接保存
// 对于满足条件的 age 属性以及其他属性,直接保存
obj[prop] = value;
}
};