fix: converted single to triple backticks11 (#36238)

This commit is contained in:
Randell Dawson
2019-06-20 13:42:13 -07:00
committed by Tom
parent 397014136e
commit 54d303ce1f
75 changed files with 1673 additions and 1430 deletions

View File

@@ -15,16 +15,19 @@ localeTitle: قم بتعريف كائنات JavaScript كمتغيرات
باستخدام ميزة التدوين النقطي:
`console.log(car.wheels); // 4
`
```javascript
console.log(car.wheels); // 4
```
باستخدام تدرج قوس:
`console.log(car["wheels"]); // 1
`
```javascript
console.log(car["wheels"]); // 1
```
استخدام تدرج قوس ديناميكي:
`var seatsProperty = "seats";
console.log(car[seatsProperty]); // 5
`
```javascript
var seatsProperty = "seats";
console.log(car[seatsProperty]); // 5
```