Files
freeCodeCamp/curriculum/challenges/arabic/02-javascript-algorithms-and-data-structures/basic-javascript/chaining-if-else-statements.md
2022-10-20 09:13:17 -07:00

3.1 KiB

id, title, challengeType, videoUrl, forumTopicId, dashedName
id title challengeType videoUrl forumTopicId dashedName
56533eb9ac21ba0edf2244dc تَسلسل تعبيرات If Else الشرطية 1 https://scrimba.com/c/caeJgsw 16772 chaining-if-else-statements

--description--

يمكن تسلسل -ربط- عدة تعبيرات if/else معًا في السياقات المنطقية المعقدة. إليك مثال من pseudocode أو ما يسمى بالتعليمات البرمجية الزائفة -وهن التعليمات الغير مرتبط بلغة برمجة معينة ولكنه قريب من لغة الإنسان- لعدة تعبير if و else if:

if (condition1) {
  statement1
} else if (condition2) {
  statement2
} else if (condition3) {
  statement3
. . .
} else {
  statementN
}

--instructions--

اكتب تعبيرات متسلسلة if/else if للتحقق من الشروط التالية:

num < 5 - تنتج (return) Tiny
num < 10 - تنتج (return) Small
num < 15 - تنتج (return) Medium
num < 20 - تنتج (return) Large
num >= 20 - تنتج (return) Huge

--hints--

يجب أن يكون لديك في الأقل أربع تعبيرات else

assert(code.match(/else/g).length > 3);

يجب أن يكون لديك في الأقل أربع تعبيرات if

assert(code.match(/if/g).length > 3);

يجب أن يكون لديك في الأقل تعبير return

assert(code.match(/return/g).length >= 1);

testSize(0) يجب ان تنتج (return) المقطع (string) Tiny

assert(testSize(0) === 'Tiny');

testSize(4) يجب ان تنتج (return) المقطع (string) Tiny

assert(testSize(4) === 'Tiny');

testSize(5) يجب ان تنتج (return) المقطع (string) Small

assert(testSize(5) === 'Small');

testSize(8) يجب ان تنتج (return) المقطع (string) Small

assert(testSize(8) === 'Small');

testSize(10) يجب ان تنتج (return) المقطع (string) Medium

assert(testSize(10) === 'Medium');

testSize(14) يجب ان تنتج (return) المقطع (string) Medium

assert(testSize(14) === 'Medium');

testSize(15) يجب ان تنتج (return) المقطع (string) Large

assert(testSize(15) === 'Large');

testSize(17) يجب ان تنتج (return) المقطع (string) Large

assert(testSize(17) === 'Large');

testSize(20) يجب ان تنتج (return) المقطع (string) Huge

assert(testSize(20) === 'Huge');

testSize(25) يجب ان تنتج (return) المقطع (string) Huge

assert(testSize(25) === 'Huge');

--seed--

--seed-contents--

function testSize(num) {
  // Only change code below this line


  return "Change Me";
  // Only change code above this line
}

testSize(7);

--solutions--

function testSize(num) {
  if (num < 5) {
    return "Tiny";
  } else if (num < 10) {
    return "Small";
  } else if (num < 15) {
    return "Medium";
  } else if (num < 20) {
    return "Large";
  } else {
    return "Huge";
  }
}