🔥码云GVP开源项目 12k star Uniapp+ElementUI 功能强大 支持多语言、二开方便! 广告
# Mutable The difference between objects and primitive values is that **we can change objects**, whereas primitive values are immutable. ~~~ var myPrimitive = "first value"; myPrimitive = "another value"; // myPrimitive now points to another string. var myObject = { key: "first value"}; myObject.key = "another value"; // myObject points to the same object. ~~~