aboutsummaryrefslogtreecommitdiff
path: root/files/ar/glossary/boolean/index.html
diff options
context:
space:
mode:
authorPeter Bengtsson <mail@peterbe.com>2020-12-08 14:41:15 -0500
committerPeter Bengtsson <mail@peterbe.com>2020-12-08 14:41:15 -0500
commit4b1a9203c547c019fc5398082ae19a3f3d4c3efe (patch)
treed4a40e13ceeb9f85479605110a76e7a4d5f3b56b /files/ar/glossary/boolean/index.html
parent33058f2b292b3a581333bdfb21b8f671898c5060 (diff)
downloadtranslated-content-4b1a9203c547c019fc5398082ae19a3f3d4c3efe.tar.gz
translated-content-4b1a9203c547c019fc5398082ae19a3f3d4c3efe.tar.bz2
translated-content-4b1a9203c547c019fc5398082ae19a3f3d4c3efe.zip
initial commit
Diffstat (limited to 'files/ar/glossary/boolean/index.html')
-rw-r--r--files/ar/glossary/boolean/index.html48
1 files changed, 48 insertions, 0 deletions
diff --git a/files/ar/glossary/boolean/index.html b/files/ar/glossary/boolean/index.html
new file mode 100644
index 0000000000..b050bb3d8d
--- /dev/null
+++ b/files/ar/glossary/boolean/index.html
@@ -0,0 +1,48 @@
+---
+title: متغير بولياني
+slug: Glossary/Boolean
+tags:
+ - أنواع البيانات
+ - جافاسكربت
+ - شيفرة المكتوب
+ - لغات برمجية
+ - مسرد
+translation_of: Glossary/Boolean
+---
+<p dir="rtl">المتغير البولياني هو نوع من البيانات، يأخذ فقط القيمة <code>صحيح</code> أو <code>خطأ</code>. مثلا في جافاسكربت، الشروط البوليانية تستعمل عادة لتحديد أي جزء من الشيفرة سينفذ (كالتعبير الشرطي if) أو سيكرر (كحلقة التكرار for).</p>
+
+<pre class="brush: js">/* التعبير الشرطي الجافاسكربتي */
+if (الشرط البولياني) {
+ // ما سينفذ في حالة الشرط صحيح
+}
+
+if (الشرط البولياني) {
+ console.log("الشرط البولياني صحيح");
+} else {
+ console.log("الشرط البولياني خاطئ");
+}
+
+
+/* حلقة التكرار الجافاسكربتية */
+for (متغير التحكم; الشرط البولياني; counter) {
+ // ما سيكرر في حالة الشرط صحيح
+
+for (var i=0; i &lt; 4; i++) {
+ console.log("أطبع فقط إذا الشرط صحيح");
+}
+</pre>
+
+<h2 id="المزيد">المزيد</h2>
+
+<h3 id="المركز_المعرفي">المركز المعرفي</h3>
+
+<ul>
+ <li>{{Interwiki("wikipedia", "Boolean data type", "Boolean")}} on Wikipedia</li>
+</ul>
+
+<h3 id="المرجع_التقني">المرجع التقني</h3>
+
+<ul>
+ <li>The JavaScript global object: {{jsxref("Boolean")}}</li>
+ <li><a href="/en-US/docs/Web/JavaScript/Data_structures">JavaScript data types and data structures</a></li>
+</ul>