讓我詳細說明問題:計數在另一個對象內匹配的對象
我想定義一個父對象,例如usedCars。然後在usedCars裏面我想添加一些汽車。當然,我希望能夠根據數據計算匹配usedCars的數量。
這是我使用的,但因爲我是新手,我不能前進!
var usedCar = {
//constructor for cars
car: function(model, year, miles){
this.model = model;
this.year = year;
this.miles = miles;
},
//some objects
}
因此,如果我實例化一個新的usedCar我應該做以下?
var shelby = new usedCar.car('Shelby', 1990, 7500);
// i have no idea is this working or not!
所以,如果一切運作良好,我要計算匹配usedCar
usedCar.prototype.findIt = function(maxMilage){
//should i use for in or something like that here?
// i want to search through many available used cars and
// count based on maxMilage arg.
}
可能有人幫我數?我知道我在JS和英語都很蹩腳,哈哈。 如果我錯了,請給我一些關於如何實現這種情況的建議。
謝謝大家。
第一部分:是的,這會工作。將代碼粘貼到控制檯並獲取shelby.year> 1990;我不明白第二部分。你會在哪裏搜索? – Tommi 2013-05-13 12:18:21