امثلة عن الكائنات JavaScript Objects
- 2021-03-30
توصيف
مثال عن كائن Object:
JavaScript Objects
مثال عن استدعاء الكائن عن طريقة خواصه Object property:
JavaScript Objects
There are two different ways to access an object property.
You can use person.property or person["property"].
مثال عن Acess Object property as a method :
JavaScript Objects
An object method is a function definition, stored as a property value.
مثال عن كائن Object وأحد خواصه طريقة Acess Object property as a property :
JavaScript Objects
If you access an object method without (), it will return the function definition: