Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要使用我的导师指出的数组来讲述三只小猪的故事。任何关于如何开始的想法都非常感谢。
谢谢你,信仰
var pigs = new Array("pig1", "pig2", "pig3"); function wolf_eat_pigs(pigs) { pigs = []; console.log("burb!"); } wolf_eat_pigs(pigs);
http://jsfiddle.net/djwave28/Sj3b5/6/