fix: remove codepen.io links from challenge articles
This commit is contained in:
committed by
Kristofer Koishigawa
parent
6167811c09
commit
f57e6d69d8
@@ -40,8 +40,6 @@ localeTitle: قارن Scopes من var واسمح للكلمات الرئيسية
|
||||
}
|
||||
`
|
||||
|
||||
 [تشغيل الكود](https://codepen.io/dylantyates/pen/wxwxRd)
|
||||
|
||||
# شرح الشفرة:
|
||||
|
||||
باستخدام `let` لك يمكن أن تعلن المتغيرات فيما يتعلق بنطاقها.
|
||||
|
@@ -46,8 +46,6 @@ localeTitle: قم بتعريف متغير للقراءة فقط مع الكلم
|
||||
printManyTimes("freeCodeCamp");
|
||||
`
|
||||
|
||||
 [تشغيل الكود](https://codepen.io/dylantyates/pen/OwVxyx)
|
||||
|
||||
# شرح الشفرة:
|
||||
|
||||
باستخدام `const` في `sentence` يمكننا ان نجعلها للقراءة فقط وباستخدام `let` على `i` داخل لحلقة يمكننا تجنب استخدام `var` كل ذلك معا. لمزيد من الوضوح في الشفرة ، يمكننا أيضًا تغيير `sentence` إلى `SENTENCE` لإظهار أنها ثابتة.
|
||||
|
@@ -36,7 +36,6 @@ localeTitle: استكشاف الاختلافات بين فار والسماح ل
|
||||
catTalk();
|
||||
`
|
||||
|
||||
 [تشغيل الكود](https://codepen.io/dylantyates/pen/eKqoGY)
|
||||
|
||||
# شرح الشفرة:
|
||||
|
||||
|
@@ -40,7 +40,6 @@ localeTitle: Mutate An Array مع const
|
||||
editInPlace();
|
||||
`
|
||||
|
||||
 [تشغيل الكود](https://codepen.io/dylantyates/pen/djoVjW)
|
||||
|
||||
# شرح الشفرة:
|
||||
|
||||
|
@@ -43,8 +43,6 @@ localeTitle: منع تحول الكائن
|
||||
const PI = freezeObj();
|
||||
`
|
||||
|
||||
 [تشغيل الكود](https://codepen.io/dylantyates/pen/OwVxYB)
|
||||
|
||||
# شرح الشفرة:
|
||||
|
||||
باستخدام Object.freeze () على `MATH_CONSTANTS` يمكننا تجنب التلاعب بها.
|
||||
|
@@ -47,8 +47,6 @@ localeTitle: اكتب وظائف السهم لأعلى ترتيب
|
||||
console.log(squaredIntegers);
|
||||
`
|
||||
|
||||
 [تشغيل الكود](https://codepen.io/dylantyates/pen/WyWoYJ)
|
||||
|
||||
# شرح الشفرة:
|
||||
|
||||
يستخدم عامل `filter()` عوامل `filter()` و `map()` لترقيم كل الأعداد الصحيحة الموجبة في مصفوفة معينة.
|
||||
|
Reference in New Issue
Block a user