freeCodeCamp/guide/arabic/certifications/javascript-algorithms-and-data-structures/basic-javascript/use-the-conditional-ternary-operator/index.md
2018-10-16 21:32:40 +05:30

407 B

title localeTitle
Use the Conditional (Ternary) Operator استخدم المشغل الشرطي (الثالوثي)

استخدم المشغل الشرطي (الثالوثي)

تلميح 1

استخدم المشغل الثلاثي للتحقق من المساواة.

تحذير حل قدما!

`function checkEqual(a, b) { return (a = b ? true : false ); }

checkEqual(1, 2); `