Files

20 lines
508 B
Markdown
Raw Normal View History

---
title: Accessing Object Properties with Variables
localeTitle: الوصول إلى خصائص الكائن مع المتغيرات
---
## الوصول إلى خصائص الكائن مع المتغيرات
إليك حلًا عمليًا في حالة عطلك:
`// Setup
var testObj = {
12: "Namath",
16: "Montana",
19: "Unitas"
};
// Only change code below this line;
var playerNumber = 16; // Change this Line
var player = testObj[playerNumber]; // Change this Line
`