💎一站式轻松地调用各大LLM模型接口,支持GPT4、智谱、星火、月之暗面及文生图 广告
# Creation There are two ways to create an `object` in JavaScript: 1\. literal ~~~ var object = {}; // Yes, simply a pair of curly braces! ~~~ > ***Note:*** this is the **recomended** way. 2\. and object-oriented ~~~ var object = new Object(); ~~~ > ***Note:*** it's almost like Java.