let user = { name: 'John', age: 30, }
user.isAdmin = true // Adding delete user.age // Removing
user['likes birds'] = true alert(user['likes birds']) // true
let fruit = 'apple' let bag = { [fruit]: 5 } // Equivalent to { "apple": 5 }
function makeUser(name, age) { return { name, age } // Same as name: name, age: age }
let obj = { 0: 'test' } alert(obj[0]) // "test"
let user = { age: undefined } alert('age' in user) // true
let user = { name: 'John', age: 30 } for (let key in user) { alert(key) // Outputs: "name", "age" alert(user[key]) // Outputs: "John", 30 }
let userProfile = { firstName: 'Jane', lastName: 'Smith', email: 'jane.smith@example.com', isVerified: true, address: { street: '123 Elm Street', city: 'Metropolis', postalCode: '12345', }, interests: ['reading', 'hiking', 'coding'], // Method inside an object getFullName() { return `${this.firstName} ${this.lastName}` }, // Dynamically updating properties updateEmail(newEmail) { this.email = newEmail console.log(`Email updated to ${this.email}`) }, } // Accessing properties console.log(userProfile.getFullName()) // Output: Jane Smith // Updating email using the method userProfile.updateEmail('jane.doe@example.com') // Output: Email updated to jane.doe@example.com // Accessing nested properties console.log(userProfile.address.city) // Output: Metropolis // Iterating over interests console.log('User Interests:') userProfile.interests.forEach((interest) => console.log(interest))
オブジェクトの作成後にプロパティを動的に追加または削除できます。
// Adding a new property userProfile.phoneNumber = '555-1234' console.log(userProfile.phoneNumber) // Output: 555-1234 // Deleting a property delete userProfile.isVerified console.log(userProfile.isVerified) // Output: undefined
オブジェクトを作成するとき、角括弧を使用してプロパティ名を動的に計算できます。
let key = 'favoriteColor' let userPreferences = { [key]: 'blue', [key + 'Secondary']: 'green', } console.log(userPreferences.favoriteColor) // Output: blue console.log(userPreferences.favoriteColorSecondary) // Output: green
for...in を使用すると、オブジェクト内のすべてのキーをループできます。
for (let key in userProfile) { console.log(`${key}: ${userProfile[key]}`) }
製品在庫の管理など、実際のシナリオでオブジェクトを使用する方法を次に示します。
let user = { name: 'John', age: 30, }
in 演算子は、オブジェクト内にプロパティが存在するかどうかを確認します。これは、オプションのプロパティまたは動的に追加されたプロパティを検証する場合に特に役立ちます。
user.isAdmin = true // Adding delete user.age // Removing
オブジェクトは JavaScript の中心であり、柔軟性と機能性を提供します。
以上がJavaScript のオブジェクトとは何ですか?の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。