企业🤖AI智能体构建引擎,智能编排和调试,一键部署,支持知识库和私有化部署方案 广告
```js var a = 100; function test() { alert(a); a = 10; alert(a); } test(); ``` > 正确答案是: 100, 10, 10