function removeProperty(obj, prop) { if (obj[prop] != undefined) { delete obj[prop]; return true; } else { return false; } return null; }
確定! 回上一頁