嗯,他后来也问了如何往array里添加东西,我告诉他用push() 问我如何reverse array, 我告诉他用reverse() 再问如果不用reverse()怎么反序,我告诉他loop through the array from its end, push the item to a new array, 他貌似满意 liberal objects 是不是就是这样: var myObj = { name : "John Doe", age: 29, location: "New York, NY" }; 我告诉他这个就是一个associative array,相当于dictionary 用,他貌似满意 我对javascript其实也只是在“读懂”的层面,没正式用来写过什么东西
【在 l**********n 的大作中提到】 : 你应该告诉他array有哪些method,how to convert an array-like object into : array, : such as arguments.
l*n
39 楼
pop, shift吧?
,
【在 W***o 的大作中提到】 : 嗯,他后来也问了如何往array里添加东西,我告诉他用push() : 问我如何reverse array, 我告诉他用reverse() : 再问如果不用reverse()怎么反序,我告诉他loop through the array from its end, : push the item to a new array, 他貌似满意 : liberal objects 是不是就是这样: : var myObj = { : name : "John Doe", : age: 29, : location: "New York, NY" : };