aboutsummaryrefslogtreecommitdiff
path: root/files/he/glossary/array/index.html
diff options
context:
space:
mode:
authorRyan Johnson <rjohnson@mozilla.com>2021-04-29 16:16:42 -0700
committerGitHub <noreply@github.com>2021-04-29 16:16:42 -0700
commit95aca4b4d8fa62815d4bd412fff1a364f842814a (patch)
tree5e57661720fe9058d5c7db637e764800b50f9060 /files/he/glossary/array/index.html
parentee3b1c87e3c8e72ca130943eed260ad642246581 (diff)
downloadtranslated-content-95aca4b4d8fa62815d4bd412fff1a364f842814a.tar.gz
translated-content-95aca4b4d8fa62815d4bd412fff1a364f842814a.tar.bz2
translated-content-95aca4b4d8fa62815d4bd412fff1a364f842814a.zip
remove retired locales (#699)
Diffstat (limited to 'files/he/glossary/array/index.html')
-rw-r--r--files/he/glossary/array/index.html43
1 files changed, 0 insertions, 43 deletions
diff --git a/files/he/glossary/array/index.html b/files/he/glossary/array/index.html
deleted file mode 100644
index ac367d5154..0000000000
--- a/files/he/glossary/array/index.html
+++ /dev/null
@@ -1,43 +0,0 @@
----
-title: מערך
-slug: Glossary/array
-translation_of: Glossary/array
-original_slug: Glossary/מערך
----
-<p dir="rtl"> </p>
-
-<div dir="rtl"><span style="font-size: 1rem; letter-spacing: -0.00278rem;">מערך הוא אוסף מסודר של ערכים (או "פרימיטיבים" או "אובייקטים" תלוי בשפה) כל פריט באוסף נקרא איבר.</span></div>
-
-<div dir="rtl"><span style="font-size: 1rem; letter-spacing: -0.00278rem;">משתמשים במערכים בכדי לאכסן ערכים מרובים במשתנה יחיד. בשונה ממשתנה(רגיל) שיוכל לאכסן ערך יחיד.</span><br>
- </div>
-
-<div dir="rtl"><span style="font-size: 1rem; letter-spacing: -0.00278rem;">לכל איבר במערך יש מספר המוצמד אליו שנקרא אינדקס ,אשר מאפשר לך לגישה אליו.<br>
-בג'אווה סקריפט המערכים מתחילים מאינדקס אפס ואפשר לשנות אותם על ידי שימוש במתודות(methods) שונות.</span></div>
-
-<div dir="rtl"> </div>
-
-<div dir="rtl">מערך בג'אווה סקריפט נראה כך:</div>
-
-<p dir="rtl"> </p>
-
-<pre><code>var myArray = [1, 2, 3, 4];
-var catNamesArray = ["Danny", "Yossi", "Hila"];
-//מערך בג'אווה סקריפט יכול להכיל סוגים שונים של מידע כפי שמתואר מעל</code></pre>
-
-<p dir="rtl"> </p>
-
-<p dir="rtl"> </p>
-
-<h2 id="Learn_more">Learn more</h2>
-
-<h3 id="General_knowledge">General knowledge</h3>
-
-<ul>
- <li>{{Interwiki("wikipedia", "Array data structure", "Array")}} on Wikipedia</li>
-</ul>
-
-<h3 id="Technical_reference">Technical reference</h3>
-
-<ul>
- <li>JavaScript {{jsxref("Array")}} on MDN</li>
-</ul>