aboutsummaryrefslogtreecommitdiff
path: root/files/el/web
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/el/web
parentee3b1c87e3c8e72ca130943eed260ad642246581 (diff)
downloadtranslated-content-95aca4b4d8fa62815d4bd412fff1a364f842814a.tar.gz
translated-content-95aca4b4d8fa62815d4bd412fff1a364f842814a.tar.bz2
translated-content-95aca4b4d8fa62815d4bd412fff1a364f842814a.zip
remove retired locales (#699)
Diffstat (limited to 'files/el/web')
-rw-r--r--files/el/web/api/canvasrenderingcontext2d/imagesmoothingenabled/index.html181
-rw-r--r--files/el/web/api/canvasrenderingcontext2d/index.html448
-rw-r--r--files/el/web/api/geolocation/getcurrentposition/index.html127
-rw-r--r--files/el/web/api/geolocation/index.html118
-rw-r--r--files/el/web/api/index.html18
-rw-r--r--files/el/web/css/index.html69
-rw-r--r--files/el/web/html/element/embed/index.html120
-rw-r--r--files/el/web/html/element/index.html109
-rw-r--r--files/el/web/html/index.html109
-rw-r--r--files/el/web/index.html72
-rw-r--r--files/el/web/javascript/index.html112
-rw-r--r--files/el/web/javascript/reference/functions/default_parameters/index.html222
-rw-r--r--files/el/web/javascript/reference/functions/index.html596
-rw-r--r--files/el/web/javascript/reference/global_objects/index.html193
-rw-r--r--files/el/web/javascript/reference/index.html51
-rw-r--r--files/el/web/javascript/reference/operators/comma_operator/index.html154
-rw-r--r--files/el/web/javascript/reference/operators/index.html301
-rw-r--r--files/el/web/tutorials/index.html247
18 files changed, 0 insertions, 3247 deletions
diff --git a/files/el/web/api/canvasrenderingcontext2d/imagesmoothingenabled/index.html b/files/el/web/api/canvasrenderingcontext2d/imagesmoothingenabled/index.html
deleted file mode 100644
index f4d86f8c60..0000000000
--- a/files/el/web/api/canvasrenderingcontext2d/imagesmoothingenabled/index.html
+++ /dev/null
@@ -1,181 +0,0 @@
----
-title: CanvasRenderingContext2D.imageSmoothingEnabled
-slug: Web/API/CanvasRenderingContext2D/imageSmoothingEnabled
-translation_of: Web/API/CanvasRenderingContext2D/imageSmoothingEnabled
----
-<div>{{APIRef}} {{SeeCompatTable}}</div>
-
-<p>Η ιδιότητα <code><strong>CanvasRenderingContext2D</strong></code><strong><code>.imageSmoothingEnabled</code></strong> του Canvas 2D API μπορεί να καθοριστεί για να αλλάξει αν οι εικόνες θα είναι λείες (<code>true</code>, προεπιλογή) ή όχι (<code>false</code>). Όταν ζητηθεί η ιδιότητα <code>imageSmoothingEnabled</code>, επιστρέφει την τελευταία τιμή που καθορίστικε.</p>
-
-<p>Αυτή η ιδιότητα είναι χρήσημη για παιχνίδια με θέμα pixel-art, όταν ο καμβάς κλιμακώνεται για παράδειγμα. Ο προεπιλεγμένος αλγόριθμος κλιμάκωσης μπορεί να δημιουργίσει θολά εφέ, και να καταστρέψει τα εικονοστοιχεία. Σε αυτή την περίπτωση ορίστε αυτή την ιδιότητα σε <code>false</code>. Δείτε επίσης την ιδιότητα CSS {{cssxref("image-rendering")}}.</p>
-
-<h2 id="Σύνταξη">Σύνταξη</h2>
-
-<pre class="syntaxbox"><var><em>ctx</em>.imageSmoothingEnabled = value;</var></pre>
-
-<h3 id="Επιλογές">Επιλογές</h3>
-
-<dl>
- <dt><code>value</code></dt>
- <dd>Ένα {{jsxref("Boolean")}} που δείχνωντας αν θα είναι λείες οι εικόνες ή όχι.</dd>
-</dl>
-
-<h2 id="Παραδείγματα">Παραδείγματα</h2>
-
-<h3 id="Using_the_globalAlpha_property" name="Using_the_globalAlpha_property">Χρησιμοποιώντας την ιδιότητα <code>imageSmoothingEnabled</code></h3>
-
-<p>Αυτό είναι ένα απλό απόσπασμα κώδικα που χρησιμοποιά την ιδιότητα <code>imageSmoothingEnabled</code> με μία κλιμακωμένη εικόνα.</p>
-
-<h4 id="HTML">HTML</h4>
-
-<pre class="brush: html">&lt;canvas id="canvas"&gt;&lt;/canvas&gt;
-</pre>
-
-<h4 id="JavaScript">JavaScript</h4>
-
-<pre class="brush: js; highlight[7-10]">var canvas = document.getElementById('canvas');
-var ctx = canvas.getContext('2d');
-
-var img = new Image();
-img.src = 'https://mdn.mozillademos.org/files/222/Canvas_createpattern.png';
-img.onload = function() {
- ctx.mozImageSmoothingEnabled = false;
- ctx.webkitImageSmoothingEnabled = false;
- ctx.msImageSmoothingEnabled = false;
- ctx.imageSmoothingEnabled = false;
- ctx.drawImage(img, 0, 0, 400, 200);
-};
-</pre>
-
-<p>Επεξεργάστε τον παρακάτω κώδικα και δείτε ζωντανά τις αλλαγές σας στον καμβά:</p>
-
-<div class="hidden">
-<h6 id="Playable_code" name="Playable_code">Playable code</h6>
-
-<pre class="brush: html">&lt;canvas id="canvas" width="400" height="200" class="playable-canvas"&gt;&lt;/canvas&gt;
-&lt;div class="playable-buttons"&gt;
-  &lt;input id="edit" type="button" value="Edit" /&gt;
-  &lt;input id="reset" type="button" value="Reset" /&gt;
-&lt;/div&gt;
-&lt;textarea id="code" class="playable-code" style="height:140px;"&gt;
-var img = new Image();
-img.src = 'https://mdn.mozillademos.org/files/222/Canvas_createpattern.png';
-img.onload = function() {
- ctx.mozImageSmoothingEnabled = false;
- ctx.webkitImageSmoothingEnabled = false;
- ctx.msImageSmoothingEnabled = false;
- ctx.imageSmoothingEnabled = false;
- ctx.drawImage(img, 0, 0, 400, 200);
-};&lt;/textarea&gt;
-</pre>
-
-<pre class="brush: js">var canvas = document.getElementById('canvas');
-var ctx = canvas.getContext('2d');
-var textarea = document.getElementById('code');
-var reset = document.getElementById('reset');
-var edit = document.getElementById('edit');
-var code = textarea.value;
-
-function drawCanvas() {
- ctx.clearRect(0, 0, canvas.width, canvas.height);
- eval(textarea.value);
-}
-
-reset.addEventListener('click', function() {
- textarea.value = code;
- drawCanvas();
-});
-
-edit.addEventListener('click', function() {
- textarea.focus();
-})
-
-textarea.addEventListener('input', drawCanvas);
-window.addEventListener('load', drawCanvas);
-</pre>
-</div>
-
-<p>{{ EmbedLiveSample('Playable_code', 700, 400) }}</p>
-
-<h2 id="Προδιαγραφές">Προδιαγραφές</h2>
-
-<table class="standard-table">
- <tbody>
- <tr>
- <th scope="col">Προδιαγραφή</th>
- <th scope="col">Κατάσταση</th>
- <th scope="col">Σχόλιο</th>
- </tr>
- <tr>
- <td>{{SpecName('HTML WHATWG', "scripting.html#dom-context-2d-imagesmoothingenabled", "CanvasRenderingContext2D.imageSmoothingEnabled")}}</td>
- <td>{{Spec2('HTML WHATWG')}}</td>
- <td> </td>
- </tr>
- </tbody>
-</table>
-
-<h2 id="Συμβατότητα_προγραμμάτων_περιήγησης">Συμβατότητα προγραμμάτων περιήγησης</h2>
-
-<p>{{ CompatibilityTable() }}</p>
-
-<div id="compat-desktop">
-<table class="compat-table">
- <tbody>
- <tr>
- <th>Χαρακτηριστικό</th>
- <th>Chrome</th>
- <th>Firefox (Gecko)</th>
- <th>Internet Explorer</th>
- <th>Opera</th>
- <th>Safari</th>
- </tr>
- <tr>
- <td>Basic support</td>
- <td>30 [1]</td>
- <td>{{ CompatVersionUnknown() }}<br>
- {{property_prefix("moz")}}<br>
- {{ CompatGeckoDesktop(51)}}</td>
- <td>{{ CompatVersionUnknown() }}<br>
- {{property_prefix("ms")}}</td>
- <td>{{ CompatUnknown() }}</td>
- <td>{{ CompatUnknown() }}</td>
- </tr>
- </tbody>
-</table>
-</div>
-
-<div id="compat-mobile">
-<table class="compat-table">
- <tbody>
- <tr>
- <th>Χαρακτηριστικό</th>
- <th>Android</th>
- <th>Chrome for Android</th>
- <th>Firefox Mobile (Gecko)</th>
- <th>IE Mobile</th>
- <th>Opera Mobile</th>
- <th>Safari Mobile</th>
- </tr>
- <tr>
- <td>Basic support</td>
- <td>{{ CompatUnknown() }}</td>
- <td>{{ CompatUnknown() }}</td>
- <td>{{ CompatVersionUnknown() }}<br>
- {{property_prefix("moz")}}<br>
- {{ CompatGeckoMobile(51)}}</td>
- <td>{{ CompatUnknown() }}</td>
- <td>{{ CompatUnknown() }}</td>
- <td>{{ CompatUnknown() }}</td>
- </tr>
- </tbody>
-</table>
-</div>
-
-<p>[1] Υποστηρίζεται με <code>webkit</code> prefix μέχρι την έκδοση 29.</p>
-
-<h2 id="Δείτε_επίσης">Δείτε επίσης</h2>
-
-<ul>
- <li>Την διεπαφή που την καθορίζει, {{domxref("CanvasRenderingContext2D")}}</li>
- <li>{{cssxref("image-rendering")}}</li>
-</ul>
diff --git a/files/el/web/api/canvasrenderingcontext2d/index.html b/files/el/web/api/canvasrenderingcontext2d/index.html
deleted file mode 100644
index d6aa558a9c..0000000000
--- a/files/el/web/api/canvasrenderingcontext2d/index.html
+++ /dev/null
@@ -1,448 +0,0 @@
----
-title: CanvasRenderingContext2D
-slug: Web/API/CanvasRenderingContext2D
-tags:
- - API
- - Canvas
- - CanvasRenderingContext2D
- - Games
- - Graphics
- - NeedsTranslation
- - Reference
- - TopicStub
-translation_of: Web/API/CanvasRenderingContext2D
----
-<div>{{APIRef}}</div>
-
-<div>The <strong>CanvasRenderingContext2D</strong> interface is used for drawing rectangles, text, images and other objects onto the canvas element. It provides the 2D rendering context for the drawing surface of a {{ HTMLElement("canvas") }} element.</div>
-
-<div> </div>
-
-<p>To get an object of this interface, call {{domxref("HTMLCanvasElement.getContext()", "getContext()")}} on a <code>&lt;canvas&gt; element</code>, supplying "2d" as the argument:</p>
-
-<pre class="brush: js">var canvas = document.getElementById('myCanvas'); // in your HTML this element appears as &lt;canvas id="mycanvas"&gt;&lt;/canvas&gt;
-var ctx = canvas.getContext('2d');
-</pre>
-
-<p>Once you have the 2D rendering context for a canvas, you can draw within it. For example:</p>
-
-<pre class="brush: js">ctx.fillStyle = 'rgb(200,0,0)'; // sets the color to fill in the rectangle with
-ctx.fillRect(10, 10, 55, 50); // draws the rectangle at position 10, 10 with a width of 55 and a height of 50
-</pre>
-
-<p>See the properties and methods in the sidebar and below. The <a href="/en-US/docs/Web/API/Canvas_API/Tutorial" title="Canvas tutorial">canvas tutorial</a> has more information, examples, and resources as well.</p>
-
-<h2 id="Drawing_rectangles">Drawing rectangles</h2>
-
-<p>There are three methods that immediately draw rectangles to the bitmap.</p>
-
-<dl>
- <dt>{{domxref("CanvasRenderingContext2D.clearRect()")}}</dt>
- <dd>Sets all pixels in the rectangle defined by starting point <em>(x, y)</em> and size <em>(width, height)</em> to transparent black, erasing any previously drawn content.</dd>
- <dt>{{domxref("CanvasRenderingContext2D.fillRect()")}}</dt>
- <dd>Draws a filled rectangle at <em>(x, y) </em>position whose size is determined by <em>width</em> and <em>height</em>.</dd>
- <dt>{{domxref("CanvasRenderingContext2D.strokeRect()")}}</dt>
- <dd>Paints a rectangle which has a starting point at <em>(x, y)</em> and has a<em> w</em> width and an <em>h</em> height onto the canvas, using the current stroke style.</dd>
-</dl>
-
-<h2 id="Drawing_text">Drawing text</h2>
-
-<p>The following methods are provided for drawing text. See also the {{domxref("TextMetrics")}} object for text properties.</p>
-
-<dl>
- <dt>{{domxref("CanvasRenderingContext2D.fillText()")}}</dt>
- <dd>Draws (fills) a given text at the given (x,y) position.</dd>
- <dt>{{domxref("CanvasRenderingContext2D.strokeText()")}}</dt>
- <dd>Draws (strokes) a given text at the given <em>(x, y) </em>position.</dd>
- <dt>{{domxref("CanvasRenderingContext2D.measureText()")}}</dt>
- <dd>Returns a {{domxref("TextMetrics")}} object.</dd>
-</dl>
-
-<h2 id="Line_styles">Line styles</h2>
-
-<p>The following methods and properties control how lines are drawn.</p>
-
-<dl>
- <dt>{{domxref("CanvasRenderingContext2D.lineWidth")}}</dt>
- <dd>Width of lines. Default <code>1.0</code></dd>
- <dt>{{domxref("CanvasRenderingContext2D.lineCap")}}</dt>
- <dd>Type of endings on the end of lines. Possible values: <code>butt</code> (default), <code>round</code>, <code>square</code>.</dd>
- <dt>{{domxref("CanvasRenderingContext2D.lineJoin")}}</dt>
- <dd>Defines the type of corners where two lines meet. Possible values: <code>round</code>, <code>bevel</code>, <code>miter</code> (default).</dd>
- <dt>{{domxref("CanvasRenderingContext2D.miterLimit")}}</dt>
- <dd>Miter limit ratio. Default <code>10</code>.</dd>
- <dt>{{domxref("CanvasRenderingContext2D.getLineDash()")}}</dt>
- <dd>Returns the current line dash pattern array containing an even number of non-negative numbers.</dd>
- <dt>{{domxref("CanvasRenderingContext2D.setLineDash()")}}</dt>
- <dd>Sets the current line dash pattern.</dd>
- <dt>{{domxref("CanvasRenderingContext2D.lineDashOffset")}}</dt>
- <dd>Specifies where to start a dash array on a line.</dd>
-</dl>
-
-<h2 id="Text_styles">Text styles</h2>
-
-<p>The following properties control how text is laid out.</p>
-
-<dl>
- <dt>{{domxref("CanvasRenderingContext2D.font")}}</dt>
- <dd>Font setting. Default value <code>10px sans-serif</code>.</dd>
- <dt>{{domxref("CanvasRenderingContext2D.textAlign")}}</dt>
- <dd>Text alignment setting. Possible values: <code>start</code> (default), <code>end</code>, <code>left</code>, <code>right</code> or <code>center</code>.</dd>
- <dt>{{domxref("CanvasRenderingContext2D.textBaseline")}}</dt>
- <dd>Baseline alignment setting. Possible values: <code>top</code>, <code>hanging</code>, <code>middle</code>, <code>alphabetic</code> (default), <code>ideographic</code>, <code>bottom</code>.</dd>
- <dt>{{domxref("CanvasRenderingContext2D.direction")}}</dt>
- <dd>Directionality. Possible values: <code>ltr, rtl</code>, <code>inherit</code> (default).</dd>
-</dl>
-
-<h2 id="Fill_and_stroke_styles">Fill and stroke styles</h2>
-
-<p>Fill styling is used for colors and styles inside shapes and stroke styling is used for the lines around shapes.</p>
-
-<dl>
- <dt>{{domxref("CanvasRenderingContext2D.fillStyle")}}</dt>
- <dd>Color or style to use inside shapes. Default <code>#000</code> (black).</dd>
- <dt>{{domxref("CanvasRenderingContext2D.strokeStyle")}}</dt>
- <dd>Color or style to use for the lines around shapes. Default <code>#000</code> (black).</dd>
-</dl>
-
-<h2 id="Gradients_and_patterns">Gradients and patterns</h2>
-
-<dl>
- <dt>{{domxref("CanvasRenderingContext2D.createLinearGradient()")}}</dt>
- <dd>Creates a linear gradient along the line given by the coordinates represented by the parameters.</dd>
- <dt>{{domxref("CanvasRenderingContext2D.createRadialGradient()")}}</dt>
- <dd>Creates a radial gradient given by the coordinates of the two circles represented by the parameters.</dd>
- <dt>{{domxref("CanvasRenderingContext2D.createPattern()")}}</dt>
- <dd>Creates a pattern using the specified image (a {{domxref("CanvasImageSource")}}). It repeats the source in the directions specified by the repetition argument. This method returns a {{domxref("CanvasPattern")}}.</dd>
-</dl>
-
-<h2 id="Shadows">Shadows</h2>
-
-<dl>
- <dt>{{domxref("CanvasRenderingContext2D.shadowBlur")}}</dt>
- <dd>Specifies the blurring effect. Default <code>0</code></dd>
- <dt>{{domxref("CanvasRenderingContext2D.shadowColor")}}</dt>
- <dd>Color of the shadow. Default fully-transparent black.</dd>
- <dt>{{domxref("CanvasRenderingContext2D.shadowOffsetX")}}</dt>
- <dd>Horizontal distance the shadow will be offset. Default 0.</dd>
- <dt>{{domxref("CanvasRenderingContext2D.shadowOffsetY")}}</dt>
- <dd>Vertical distance the shadow will be offset. Default 0.</dd>
-</dl>
-
-<h2 id="Paths">Paths</h2>
-
-<p>The following methods can be used to manipulate paths of objects.</p>
-
-<dl>
- <dt>{{domxref("CanvasRenderingContext2D.beginPath()")}}</dt>
- <dd>Starts a new path by emptying the list of sub-paths. Call this method when you want to create a new path.</dd>
- <dt>{{domxref("CanvasRenderingContext2D.closePath()")}}</dt>
- <dd>Causes the point of the pen to move back to the start of the current sub-path. It tries to draw a straight line from the current point to the start. If the shape has already been closed or has only one point, this function does nothing.</dd>
- <dt>{{domxref("CanvasRenderingContext2D.moveTo()")}}</dt>
- <dd>Moves the starting point of a new sub-path to the <strong>(x, y)</strong> coordinates.</dd>
- <dt>{{domxref("CanvasRenderingContext2D.lineTo()")}}</dt>
- <dd>Connects the last point in the subpath to the <code>x, y</code> coordinates with a straight line.</dd>
- <dt>{{domxref("CanvasRenderingContext2D.bezierCurveTo()")}}</dt>
- <dd>Adds a cubic Bézier curve to the path. It requires three points. The first two points are control points and the third one is the end point. The starting point is the last point in the current path, which can be changed using <code>moveTo()</code> before creating the Bézier curve.</dd>
- <dt>{{domxref("CanvasRenderingContext2D.quadraticCurveTo()")}}</dt>
- <dd>Adds a quadratic Bézier curve to the current path.</dd>
- <dt>{{domxref("CanvasRenderingContext2D.arc()")}}</dt>
- <dd>Adds an arc to the path which is centered at <em>(x, y)</em> position with radius<em> r</em> starting at <em>startAngle</em> and ending at <em>endAngle</em> going in the given direction by <em>anticlockwise</em> (defaulting to clockwise).</dd>
- <dt>{{domxref("CanvasRenderingContext2D.arcTo()")}}</dt>
- <dd>Adds an arc to the path with the given control points and radius, connected to the previous point by a straight line.</dd>
- <dt>{{domxref("CanvasRenderingContext2D.ellipse()")}} {{experimental_inline}}</dt>
- <dd>Adds an ellipse to the path which is centered at <em>(x, y)</em> position with the radii <em>radiusX</em> and <em>radiusY</em> starting at <em>startAngle</em> and ending at <em>endAngle</em> going in the given direction by <em>anticlockwise</em> (defaulting to clockwise).</dd>
- <dt>{{domxref("CanvasRenderingContext2D.rect()")}}</dt>
- <dd>Creates a path for a rectangle at<em> </em>position <em>(x, y)</em> with a size that is determined by <em>width</em> and <em>height</em>.</dd>
-</dl>
-
-<h2 id="Drawing_paths">Drawing paths</h2>
-
-<dl>
- <dt>{{domxref("CanvasRenderingContext2D.fill()")}}</dt>
- <dd>Fills the subpaths with the current fill style.</dd>
- <dt>{{domxref("CanvasRenderingContext2D.stroke()")}}</dt>
- <dd>Strokes the subpaths with the current stroke style.</dd>
- <dt>{{domxref("CanvasRenderingContext2D.drawFocusIfNeeded()")}}</dt>
- <dd>If a given element is focused, this method draws a focus ring around the current path.</dd>
- <dt>{{domxref("CanvasRenderingContext2D.scrollPathIntoView()")}}</dt>
- <dd>Scrolls the current path or a given path into the view.</dd>
- <dt>{{domxref("CanvasRenderingContext2D.clip()")}}</dt>
- <dd>Creates a clipping path from the current sub-paths. Everything drawn after <code>clip()</code> is called appears inside the clipping path only. For an example, see <a href="/en-US/docs/Web/API/Canvas_API/Tutorial/Compositing" title="Clipping paths">Clipping paths</a> in the Canvas tutorial.</dd>
- <dt>{{domxref("CanvasRenderingContext2D.isPointInPath()")}}</dt>
- <dd>Reports whether or not the specified point is contained in the current path.</dd>
- <dt>{{domxref("CanvasRenderingContext2D.isPointInStroke()")}}</dt>
- <dd>Reports whether or not the specified point is inside the area contained by the stroking of a path.</dd>
-</dl>
-
-<h2 id="Transformations">Transformations</h2>
-
-<p>Objects in the <code>CanvasRenderingContext2D</code> rendering context have a current transformation matrix and methods to manipulate it. The transformation matrix is applied when creating the current default path, painting text, shapes and {{domxref("Path2D")}} objects. The methods listed below remain for historical and compatibility reasons as {{domxref("SVGMatrix")}} objects are used in most parts of the API nowadays and will be used in the future instead.</p>
-
-<dl>
- <dt>{{domxref("CanvasRenderingContext2D.currentTransform")}}</dt>
- <dd>Current transformation matrix ({{domxref("SVGMatrix")}} object).</dd>
- <dt>{{domxref("CanvasRenderingContext2D.rotate()")}}</dt>
- <dd>Adds a rotation to the transformation matrix. The angle argument represents a clockwise rotation angle and is expressed in radians.</dd>
- <dt>{{domxref("CanvasRenderingContext2D.scale()")}}</dt>
- <dd>Adds a scaling transformation to the canvas units by x horizontally and by y vertically.</dd>
- <dt>{{domxref("CanvasRenderingContext2D.translate()")}}</dt>
- <dd>Adds a translation transformation by moving the canvas and its origin x horzontally and y vertically on the grid.</dd>
- <dt>{{domxref("CanvasRenderingContext2D.transform()")}}</dt>
- <dd>Multiplies the current transformation matrix with the matrix described by its arguments.</dd>
- <dt>{{domxref("CanvasRenderingContext2D.setTransform()")}}</dt>
- <dd>Resets the current transform to the identity matrix, and then invokes the <code>transform()</code> method with the same arguments.</dd>
- <dt>{{domxref("CanvasRenderingContext2D.resetTransform()")}} {{experimental_inline}}</dt>
- <dd>Resets the current transform by the identity matrix.</dd>
-</dl>
-
-<h2 id="Compositing">Compositing</h2>
-
-<dl>
- <dt>{{domxref("CanvasRenderingContext2D.globalAlpha")}}</dt>
- <dd>Alpha value that is applied to shapes and images before they are composited onto the canvas. Default <code>1.0</code> (opaque).</dd>
- <dt>{{domxref("CanvasRenderingContext2D.globalCompositeOperation")}}</dt>
- <dd>With <code>globalAlpha</code> applied this sets how shapes and images are drawn onto the existing bitmap.</dd>
-</dl>
-
-<h2 id="Drawing_images">Drawing images</h2>
-
-<dl>
- <dt>{{domxref("CanvasRenderingContext2D.drawImage()")}}</dt>
- <dd>Draws the specified image. This method is available in multiple formats, providing a great deal of flexibility in its use.</dd>
-</dl>
-
-<h2 id="Pixel_manipulation">Pixel manipulation</h2>
-
-<p>See also the {{domxref("ImageData")}} object.</p>
-
-<dl>
- <dt>{{domxref("CanvasRenderingContext2D.createImageData()")}}</dt>
- <dd>Creates a new, blank {{domxref("ImageData")}} object with the specified dimensions. All of the pixels in the new object are transparent black.</dd>
- <dt>{{domxref("CanvasRenderingContext2D.getImageData()")}}</dt>
- <dd>Returns an {{domxref("ImageData")}} object representing the underlying pixel data for the area of the canvas denoted by the rectangle which starts at <em>(sx, sy)</em> and has an <em>sw</em> width and <em>sh</em> height.</dd>
- <dt>{{domxref("CanvasRenderingContext2D.putImageData()")}}</dt>
- <dd>Paints data from the given {{domxref("ImageData")}} object onto the bitmap. If a dirty rectangle is provided, only the pixels from that rectangle are painted.</dd>
-</dl>
-
-<h2 id="Image_smoothing">Image smoothing</h2>
-
-<dl>
- <dt>{{domxref("CanvasRenderingContext2D.imageSmoothingEnabled")}} {{experimental_inline}}</dt>
- <dd>Image smoothing mode; if disabled, images will not be smoothed if scaled.</dd>
-</dl>
-
-<h2 id="The_canvas_state">The canvas state</h2>
-
-<p>The <code>CanvasRenderingContext2D</code> rendering context contains a variety of drawing style states (attributes for line styles, fill styles, shadow styles, text styles). The following methods help you to work with that state:</p>
-
-<dl>
- <dt>{{domxref("CanvasRenderingContext2D.save()")}}</dt>
- <dd>Saves the current drawing style state using a stack so you can revert any change you make to it using <code>restore()</code>.</dd>
- <dt>{{domxref("CanvasRenderingContext2D.restore()")}}</dt>
- <dd>Restores the drawing style state to the last element on the 'state stack' saved by <code>save()</code>.</dd>
- <dt>{{domxref("CanvasRenderingContext2D.canvas")}}</dt>
- <dd>A read-only back-reference to the {{domxref("HTMLCanvasElement")}}. Might be {{jsxref("null")}} if it is not associated with a {{HTMLElement("canvas")}} element.</dd>
-</dl>
-
-<h2 id="Hit_regions">Hit regions</h2>
-
-<dl>
- <dt>{{domxref("CanvasRenderingContext2D.addHitRegion()")}} {{experimental_inline}}</dt>
- <dd>Adds a hit region to the canvas.</dd>
- <dt>{{domxref("CanvasRenderingContext2D.removeHitRegion()")}} {{experimental_inline}}</dt>
- <dd>Removes the hit region with the specified <code>id</code> from the canvas.</dd>
- <dt>{{domxref("CanvasRenderingContext2D.clearHitRegions()")}} {{experimental_inline}}</dt>
- <dd>Removes all hit regions from the canvas.</dd>
-</dl>
-
-<h2 id="Non-standard_APIs">Non-standard APIs</h2>
-
-<h3 id="Blink_and_WebKit">Blink and WebKit</h3>
-
-<p>Most of these APIs are <a href="https://code.google.com/p/chromium/issues/detail?id=363198">deprecated and will be removed in the future</a>.</p>
-
-<dl>
- <dt>{{non-standard_inline}} <code>CanvasRenderingContext2D.clearShadow()</code></dt>
- <dd>Removes all shadow settings like {{domxref("CanvasRenderingContext2D.shadowColor")}} and {{domxref("CanvasRenderingContext2D.shadowBlur")}}.</dd>
- <dt>{{non-standard_inline}} <code>CanvasRenderingContext2D.drawImageFromRect()</code></dt>
- <dd>This is redundant with an equivalent overload of <code>drawImage</code>.</dd>
- <dt>{{non-standard_inline}} <code>CanvasRenderingContext2D.setAlpha()</code></dt>
- <dd>Use {{domxref("CanvasRenderingContext2D.globalAlpha")}} instead.</dd>
- <dt>{{non-standard_inline}} <code>CanvasRenderingContext2D.setCompositeOperation()</code></dt>
- <dd>Use {{domxref("CanvasRenderingContext2D.globalCompositeOperation")}} instead.</dd>
- <dt>{{non-standard_inline}} <code>CanvasRenderingContext2D.setLineWidth()</code></dt>
- <dd>Use {{domxref("CanvasRenderingContext2D.lineWidth")}} instead.</dd>
- <dt>{{non-standard_inline}} <code>CanvasRenderingContext2D.setLineJoin()</code></dt>
- <dd>Use {{domxref("CanvasRenderingContext2D.lineJoin")}} instead.</dd>
- <dt>{{non-standard_inline}} <code>CanvasRenderingContext2D.setLineCap()</code></dt>
- <dd>Use {{domxref("CanvasRenderingContext2D.lineCap")}} instead.</dd>
- <dt>{{non-standard_inline}} <code>CanvasRenderingContext2D.setMiterLimit()</code></dt>
- <dd>Use {{domxref("CanvasRenderingContext2D.miterLimit")}} instead.</dd>
- <dt>{{non-standard_inline}} <code>CanvasRenderingContext2D.setStrokeColor()</code></dt>
- <dd>Use {{domxref("CanvasRenderingContext2D.strokeStyle")}} instead.</dd>
- <dt>{{non-standard_inline}} <code>CanvasRenderingContext2D.setFillColor()</code></dt>
- <dd>Use {{domxref("CanvasRenderingContext2D.fillStyle")}} instead.</dd>
- <dt>{{non-standard_inline}} <code>CanvasRenderingContext2D.setShadow()</code></dt>
- <dd>Use {{domxref("CanvasRenderingContext2D.shadowColor")}} and {{domxref("CanvasRenderingContext2D.shadowBlur")}} instead.</dd>
- <dt>{{non-standard_inline}} <code>CanvasRenderingContext2D.webkitLineDash</code></dt>
- <dd>Use {{domxref("CanvasRenderingContext2D.getLineDash()")}} and {{domxref("CanvasRenderingContext2D.setLineDash()")}} instead.</dd>
- <dt>{{non-standard_inline}} <code>CanvasRenderingContext2D.webkitLineDashOffset</code></dt>
- <dd>Use {{domxref("CanvasRenderingContext2D.lineDashOffset")}} instead.</dd>
- <dt>{{non-standard_inline}} <code>CanvasRenderingContext2D.webkitImageSmoothingEnabled</code></dt>
- <dd>Use {{domxref("CanvasRenderingContext2D.imageSmoothingEnabled")}} instead.</dd>
-</dl>
-
-<h3 id="Blink_only">Blink only</h3>
-
-<dl>
- <dt>{{non-standard_inline}} <code>CanvasRenderingContext2D.getContextAttributes()</code></dt>
- <dd>Inspired by the same <code>WebGLRenderingContext</code> method it returns an <code>Canvas2DContextAttributes</code> object that contains the attributes "storage" to indicate which storage is used ("persistent" by default) and the attribute "alpha" (<code>true</code> by default) to indicate that transparency is used in the canvas.</dd>
- <dt>{{non-standard_inline}} <code>CanvasRenderingContext2D.isContextLost()</code></dt>
- <dd>Inspired by the same <code>WebGLRenderingContext</code> method it returns <code>true</code> if the Canvas context has been lost, or <code>false</code> if not.</dd>
-</dl>
-
-<h3 id="WebKit_only">WebKit only</h3>
-
-<dl>
- <dt>{{non-standard_inline}} <code>CanvasRenderingContext2D.webkitBackingStorePixelRatio</code></dt>
- <dd>The backing store size in relation to the canvas element. See <a href="http://www.html5rocks.com/en/tutorials/canvas/hidpi/">High DPI Canvas</a>.</dd>
- <dt>{{non-standard_inline}} <code>CanvasRenderingContext2D.webkitGetImageDataHD</code></dt>
- <dd>Intended for HD backing stores, but removed from canvas specifications.</dd>
- <dt>{{non-standard_inline}} <code>CanvasRenderingContext2D.webkitPutImageDataHD</code></dt>
- <dd>Intended for HD backing stores, but removed from canvas specifications.</dd>
-</dl>
-
-<dl>
-</dl>
-
-<h3 id="Gecko_only">Gecko only</h3>
-
-<dl>
- <dt>{{non-standard_inline}} {{domxref("CanvasRenderingContext2D.filter")}}</dt>
- <dd>CSS and SVG filters as Canvas APIs. Likely to be standardized in a new version of the specification.</dd>
-</dl>
-
-<h4 id="Prefixed_APIs">Prefixed APIs</h4>
-
-<dl>
- <dt>{{non-standard_inline}} <code>CanvasRenderingContext2D.mozCurrentTransform</code></dt>
- <dd>Sets or gets the current transformation matrix, see {{domxref("CanvasRenderingContext2D.currentTransform")}}.  {{ gecko_minversion_inline("7.0") }}</dd>
- <dt>{{non-standard_inline}} <code>CanvasRenderingContext2D.mozCurrentTransformInverse</code></dt>
- <dd>Sets or gets the current inversed transformation matrix.  {{ gecko_minversion_inline("7.0") }}</dd>
- <dt>{{non-standard_inline}} <code>CanvasRenderingContext2D.mozImageSmoothingEnabled</code></dt>
- <dd>See {{domxref("CanvasRenderingContext2D.imageSmoothingEnabled")}}.</dd>
- <dt>{{non-standard_inline}} {{deprecated_inline}} <code>CanvasRenderingContext2D.mozTextStyle</code></dt>
- <dd>Introduced in in Gecko 1.9, deprecated in favor of the {{domxref("CanvasRenderingContext2D.font")}} property.</dd>
- <dt>{{non-standard_inline}} {{obsolete_inline}} <code>CanvasRenderingContext2D.mozDrawText()</code></dt>
- <dd>This method was introduced in Gecko 1.9 and is removed starting with Gecko 7.0. Use {{domxref("CanvasRenderingContext2D.strokeText()")}} or {{domxref("CanvasRenderingContext2D.fillText()")}} instead.</dd>
- <dt>{{non-standard_inline}} {{obsolete_inline}} <code>CanvasRenderingContext2D.mozMeasureText()</code></dt>
- <dd>This method was introduced in Gecko 1.9 and is unimplemented starting with Gecko 7.0. Use {{domxref("CanvasRenderingContext2D.measureText()")}} instead.</dd>
- <dt>{{non-standard_inline}} {{obsolete_inline}} <code>CanvasRenderingContext2D.mozPathText()</code></dt>
- <dd>This method was introduced in Gecko 1.9 and is removed starting with Gecko 7.0.</dd>
- <dt>{{non-standard_inline}} {{obsolete_inline}} <code>CanvasRenderingContext2D.mozTextAlongPath()</code></dt>
- <dd>This method was introduced in Gecko 1.9 and is removed starting with Gecko 7.0.</dd>
-</dl>
-
-<h4 id="Internal_APIs_(chrome-context_only)">Internal APIs (chrome-context only)</h4>
-
-<dl>
- <dt>{{non-standard_inline}} {{domxref("CanvasRenderingContext2D.asyncDrawXULElement()")}}</dt>
- <dd>Renders a region of a XUL element into the <code>canvas</code>.</dd>
- <dt>{{non-standard_inline}} {{domxref("CanvasRenderingContext2D.drawWindow()")}}</dt>
- <dd>Renders a region of a window into the <code>canvas</code>. The contents of the window's viewport are rendered, ignoring viewport clipping and scrolling.</dd>
- <dt>{{non-standard_inline}} <code>CanvasRenderingContext2D.demote()</code></dt>
- <dd>This causes a context that is currently using a hardware-accelerated backend to fallback to a software one. All state should be preserved.</dd>
-</dl>
-
-<h3 id="Internet_Explorer">Internet Explorer</h3>
-
-<dl>
- <dt>{{non-standard_inline}} <code>CanvasRenderingContext2D.msFillRule</code></dt>
- <dd>The <a class="external" href="http://cairographics.org/manual/cairo-cairo-t.html#cairo-fill-rule-t" title="http://cairographics.org/manual/cairo-cairo-t.html#cairo-fill-rule-t">fill rule</a> to use. This must be one of <code>evenodd</code> or <code>nonzero</code> (default).</dd>
-</dl>
-
-<h2 id="Specifications">Specifications</h2>
-
-<table class="standard-table">
- <tbody>
- <tr>
- <th scope="col">Specification</th>
- <th scope="col">Status</th>
- <th scope="col">Comment</th>
- </tr>
- <tr>
- <td>{{SpecName('HTML WHATWG', "scripting.html#2dcontext:canvasrenderingcontext2d", "CanvasRenderingContext2D")}}</td>
- <td>{{Spec2('HTML WHATWG')}}</td>
- <td> </td>
- </tr>
- </tbody>
-</table>
-
-<h2 id="Browser_compatibility">Browser compatibility</h2>
-
-<div>{{CompatibilityTable}}</div>
-
-<div id="compat-desktop">
-<table class="compat-table">
- <tbody>
- <tr>
- <th>Feature</th>
- <th>Chrome</th>
- <th>Edge</th>
- <th>Firefox (Gecko)</th>
- <th>Internet Explorer</th>
- <th>Opera</th>
- <th>Safari</th>
- </tr>
- <tr>
- <td>Basic support</td>
- <td>{{CompatChrome("1")}}</td>
- <td>{{CompatVersionUnknown}}</td>
- <td>{{CompatGeckoDesktop("1.8")}}</td>
- <td>{{CompatIE("9")}}</td>
- <td>{{CompatOpera("9")}}</td>
- <td>{{CompatSafari("2")}}</td>
- </tr>
- </tbody>
-</table>
-</div>
-
-<div id="compat-mobile">
-<table class="compat-table">
- <tbody>
- <tr>
- <th>Feature</th>
- <th>Android</th>
- <th>Chrome for Android</th>
- <th>Edge</th>
- <th>Firefox Mobile (Gecko)</th>
- <th>IE Mobile</th>
- <th>Opera Mobile</th>
- <th>Safari Mobile</th>
- </tr>
- <tr>
- <td>Basic support</td>
- <td>{{CompatUnknown}}</td>
- <td>{{CompatUnknown}}</td>
- <td>{{CompatVersionUnknown}}</td>
- <td>{{CompatUnknown}}</td>
- <td>{{CompatUnknown}}</td>
- <td>{{CompatUnknown}}</td>
- <td>{{CompatUnknown}}</td>
- </tr>
- </tbody>
-</table>
-</div>
-
-<h2 id="Compatibility_notes">Compatibility notes</h2>
-
-<ul>
- <li>Starting with Gecko 5.0 {{geckoRelease("5.0")}}, specifying invalid values are now silently ignored for the following methods and properties: <code>translate()</code>, <code>transform()</code>, <code>rotate(), </code><code>scale(),</code> <code>rect()</code>, <code>clearRect()</code>, <code>fillRect()</code>, <code>strokeRect()</code>, <code>lineTo()</code>, <code>moveTo()</code>, <code>quadraticCurveTo()</code>, <code>arc()</code>, <code>shadowOffsetX</code>, <code>shadowOffsetY</code>,  <code>shadowBlur</code>.</li>
-</ul>
-
-<h2 id="See_also">See also</h2>
-
-<ul>
- <li>{{domxref("HTMLCanvasElement")}}</li>
-</ul>
diff --git a/files/el/web/api/geolocation/getcurrentposition/index.html b/files/el/web/api/geolocation/getcurrentposition/index.html
deleted file mode 100644
index f22b26d7ba..0000000000
--- a/files/el/web/api/geolocation/getcurrentposition/index.html
+++ /dev/null
@@ -1,127 +0,0 @@
----
-title: Geolocation.getCurrentPosition()
-slug: Web/API/Geolocation/getCurrentPosition
-translation_of: Web/API/Geolocation/getCurrentPosition
----
-<p>{{ APIRef("Geolocation API") }}</p>
-
-<p>Η μέθοδος <strong><code>Geolocation.getCurrentPosition()</code></strong> χρησιμοποιείται ώστε να ανακτηθεί η τρέχουσα τοποθεσία της συσκευής.</p>
-
-<h2 id="Συντακτικό">Συντακτικό</h2>
-
-<pre class="syntaxbox">navigator.geolocation.getCurrentPosition(<em>success[</em>, <em>error[</em>, <em>options]]</em>)</pre>
-
-<h3 id="Παράμετροι">Παράμετροι</h3>
-
-<dl>
- <dt><em>success</em></dt>
- <dd>Μία συνάρτηση επανάκλησης (callback function) που δέχεται ένα αντικείμενο τύπου {{domxref("Position")}} ως μοναδική παράμετρο εισόδου.</dd>
- <dt><em>error</em> {{optional_inline}}</dt>
- <dd>Μία προαιρετική συνάρτηση επανάκλησης (callback function) που δέχεται ένα αντικείμενο τύπου {{domxref("PositionError")}} ως μοναδική παράμετρο εισόδου.</dd>
- <dt><em>options</em> {{optional_inline}}</dt>
- <dd>Ένα προαιρετικό αντικείμενο τύπου {{domxref("PositionOptions")}}.</dd>
-</dl>
-
-<h2 id="Παράδειγμα">Παράδειγμα</h2>
-
-<pre class="brush: js">var options = {
- enableHighAccuracy: true,
- timeout: 5000,
- maximumAge: 0
-};
-
-function success(pos) {
- var crd = pos.coords;
-
- console.log('Your current position is:');
- console.log('Latitude : ' + crd.latitude);
- console.log('Longitude: ' + crd.longitude);
- console.log('More or less ' + crd.accuracy + ' meters.');
-};
-
-function error(err) {
- console.warn('ERROR(' + err.code + '): ' + err.message);
-};
-
-navigator.geolocation.getCurrentPosition(success, error, options);
-</pre>
-
-<h2 id="Προδιαγραφές">Προδιαγραφές</h2>
-
-<table class="standard-table">
- <thead>
- <tr>
- <th scope="col">Προδιαγραφή</th>
- <th scope="col">Κατάσταση</th>
- <th scope="col">Σχόλιο</th>
- </tr>
- </thead>
- <tbody>
- <tr>
- <td>{{SpecName('Geolocation')}}</td>
- <td>{{Spec2('Geolocation')}}</td>
- <td>Αρχικές προδιαγραφές</td>
- </tr>
- </tbody>
-</table>
-
-<h2 id="Συμβατότητα_προγράμματος_περιήγησης">Συμβατότητα προγράμματος περιήγησης</h2>
-
-<p>{{ CompatibilityTable() }}</p>
-
-<div id="compat-desktop">
-<table class="compat-table">
- <tbody>
- <tr>
- <th>Χαρακτηριστικό</th>
- <th>Chrome</th>
- <th>Firefox (Gecko)</th>
- <th>Internet Explorer</th>
- <th>Opera</th>
- <th>Safari</th>
- </tr>
- <tr>
- <td>Βασική υποστήριξη</td>
- <td>5</td>
- <td>{{CompatGeckoDesktop("1.9.1")}}</td>
- <td>9</td>
- <td>10.60<br>
- Αφαιρέθηκε στην έκδοση 15.0<br>
- Επαναπροστέθηκε στην έκδοση 16.0</td>
- <td>5</td>
- </tr>
- </tbody>
-</table>
-</div>
-
-<div id="compat-mobile">
-<table class="compat-table">
- <tbody>
- <tr>
- <th>Χαρακτηριστικό</th>
- <th>Android</th>
- <th>Chrome for Android</th>
- <th>Firefox Mobile (Gecko)</th>
- <th>IE Mobile</th>
- <th>Opera Mobile</th>
- <th>Safari Mobile</th>
- </tr>
- <tr>
- <td>Βασική υποστήριξη</td>
- <td>{{CompatUnknown()}}</td>
- <td>{{CompatUnknown()}}</td>
- <td>{{CompatGeckoMobile("4")}}</td>
- <td>{{CompatUnknown()}}</td>
- <td>10.60</td>
- <td>{{CompatUnknown()}}</td>
- </tr>
- </tbody>
-</table>
-</div>
-
-<h2 id="Δείτε_επίσης">Δείτε επίσης</h2>
-
-<ul>
- <li><a href="/en-US/docs/WebAPI/Using_geolocation" title="/en-US/docs/WebAPI/Using_geolocation">Χρησιμοποιώντας geolocation</a></li>
- <li>{{domxref("Navigator.geolocation")}}</li>
-</ul>
diff --git a/files/el/web/api/geolocation/index.html b/files/el/web/api/geolocation/index.html
deleted file mode 100644
index 81d4548549..0000000000
--- a/files/el/web/api/geolocation/index.html
+++ /dev/null
@@ -1,118 +0,0 @@
----
-title: Geolocation
-slug: Web/API/Geolocation
-tags:
- - API
- - Advanced
- - Geolocation API
- - Interface
- - NeedsTranslation
- - Reference
- - TopicStub
-translation_of: Web/API/Geolocation
----
-<div>{{APIRef("Geolocation API")}}</div>
-
-<p>The <code><strong>Geolocation</strong></code> interface represents an object able to programmatically obtain the position of the device. It gives Web content access to the location of the device. This allows a Web site or app to offer customized results based on the user's location.</p>
-
-<p>An object with this interface is obtained using the {{domxref("NavigatorGeolocation.geolocation")}} property implemented by the {{domxref("Navigator")}} object.</p>
-
-<div class="note">
-<p><strong>Note:</strong> For security reasons, when a web page tries to access location information, the user is notified and asked to grant permission. Be aware that each browser has its own policies and methods for requesting this permission.</p>
-</div>
-
-<h2 id="Properties">Properties</h2>
-
-<p><em>The <code>Geolocation</code> interface neither implements, nor inherits any property.</em></p>
-
-<h2 id="Methods">Methods</h2>
-
-<p><em><em>The <code>Geolocation</code> interface doesn't inherit any </em>method</em>.</p>
-
-<dl>
- <dt>{{domxref("Geolocation.getCurrentPosition()")}}</dt>
- <dd>Determines the device's current location and gives back a {{domxref("Position")}} object with the data.</dd>
- <dt>{{domxref("Geolocation.watchPosition()")}}</dt>
- <dd>Returns a <code>long</code> value representing the newly established callback function to be invoked whenever the device location changes.</dd>
- <dt>{{domxref("Geolocation.clearWatch()")}}</dt>
- <dd>Removes the particular handler previously installed using <code>watchPosition()</code>.</dd>
-</dl>
-
-<h2 id="Specifications">Specifications</h2>
-
-<table class="standard-table">
- <thead>
- <tr>
- <th scope="col">Specification</th>
- <th scope="col">Status</th>
- <th scope="col">Comment</th>
- </tr>
- </thead>
- <tbody>
- <tr>
- <td>{{SpecName('Geolocation')}}</td>
- <td>{{Spec2('Geolocation')}}</td>
- <td>Initial specification.</td>
- </tr>
- </tbody>
-</table>
-
-<h2 id="Browser_compatibility">Browser compatibility</h2>
-
-<p>{{ CompatibilityTable() }}</p>
-
-<div id="compat-desktop">
-<table class="compat-table">
- <tbody>
- <tr>
- <th>Feature</th>
- <th>Chrome</th>
- <th>Firefox (Gecko)</th>
- <th>Internet Explorer</th>
- <th>Opera</th>
- <th>Safari</th>
- </tr>
- <tr>
- <td>Basic support</td>
- <td>5</td>
- <td>{{CompatGeckoDesktop("1.9.1")}}</td>
- <td>9</td>
- <td>10.60<br>
- Removed in 15.0<br>
- Reintroduced in 16.0</td>
- <td>5</td>
- </tr>
- </tbody>
-</table>
-</div>
-
-<div id="compat-mobile">
-<table class="compat-table">
- <tbody>
- <tr>
- <th>Feature</th>
- <th>Android</th>
- <th>Chrome for Android</th>
- <th>Firefox Mobile (Gecko)</th>
- <th>IE Mobile</th>
- <th>Opera Mobile</th>
- <th>Safari Mobile</th>
- </tr>
- <tr>
- <td>Basic support</td>
- <td>{{CompatUnknown()}}</td>
- <td>{{CompatUnknown()}}</td>
- <td>{{CompatGeckoMobile("4")}}</td>
- <td>{{CompatUnknown()}}</td>
- <td>10.60</td>
- <td>{{CompatUnknown()}}</td>
- </tr>
- </tbody>
-</table>
-</div>
-
-<h2 id="See_also">See also</h2>
-
-<ul>
- <li><a href="/en-US/docs/WebAPI/Using_geolocation" title="/en-US/docs/WebAPI/Using_geolocation">Using geolocation</a></li>
-</ul>
diff --git a/files/el/web/api/index.html b/files/el/web/api/index.html
deleted file mode 100644
index 5f7d964ff7..0000000000
--- a/files/el/web/api/index.html
+++ /dev/null
@@ -1,18 +0,0 @@
----
-title: Web API Interfaces
-slug: Web/API
-tags:
- - API
- - Apps
- - JavaScript
- - Reference
- - Web
-translation_of: Web/API
----
-<p>When writing code for the Web using JavaScript, there are a great many APIs available. Below is a list of all the interfaces (that is, types of objects) that you may be able to use while developing your Web app or site.</p>
-
-<div>
-<div>{{APIListAlpha}}</div>
-</div>
-
-<p> </p>
diff --git a/files/el/web/css/index.html b/files/el/web/css/index.html
deleted file mode 100644
index 68cd44735d..0000000000
--- a/files/el/web/css/index.html
+++ /dev/null
@@ -1,69 +0,0 @@
----
-title: CSS
-slug: Web/CSS
-tags:
- - CSS
- - CSS 3
-translation_of: Web/CSS
----
-<p><strong>Cascading Style Sheets</strong>, τις περισσότερες φορές με την συντομογραφία CSS, είναι μια <a href="/en-US/docs/DOM/stylesheet">stylesheet</a> γλώσσα όπου χρησιμοποιείται για να περιγράψει την παρουσίαση ενός εγγράφου γραμμένου σε <a href="/en-US/docs/HTML">HTML</a> ή <a href="/en-US/docs/XML">XML</a> ( συμπεριλαμβανομένου διαφόρων ειδών XML γλώσσες όπως <a href="/en-US/docs/SVG">SVG</a> ή <a href="/en-US/docs/XHTML">XHTML</a>). Η CSS περιγράφει  το πώς το δομημένο στοιχείο θα πρέπει να εμφανίζεται στην οθόνη, σε χαρτί, στην ομιλία, ή σε άλλα μέσα ενημέρωσης.</p>
-
-<p>Η CSS είναι μια από τις βασικές γλώσσες του ανοικτού διαδικτύου και έχει μια τυποποιημένη <a class="external" href="http://w3.org/Style/CSS/#specs">W3C ιδιότητα</a>. Αναπτύχθηκε σε επίπεδα, η CSS1 είναι πλέον παρωχημένη, η CSS2.1 συστήνεται και η CSS3, οι οποίες χωρίζονται σε μικρότερες ενότητες.</p>
-
-<section id="sect1">
-<ul class="card-grid">
- <li>CSS Αναφορές
- <p>Μια <a href="/en-US/docs/Web/CSS/Reference">λεπτομερής αναφορά</a> για έμπειρους προγραμματιστές, περιγράφοντας κάθε ιδιότητα και έννοια της CSS.</p>
- </li>
- <li>CSS Παραδείγματα
- <p><a href="/en-US/docs/CSS/Getting_Started">Βήμα-βήμα</a> παραδείγματα για βοήθεια αρχάριων προγραμματιστών για το ξεκίνημα τους. Περιέχει όλες τις απαραίτητες βασικές αρχές.</p>
- </li>
- <li>CSS3 Επίδειξη
- <p><a href="/en-US/demos/tag/tech:css3">Συλλογή από παρουσιάσεις</a>, παρουσιάσεις τελευταίων CSS τεχνολογιών. Ώθηση για δημιουργικότητα.</p>
- </li>
-</ul>
-
-<div class="row topicpage-table">
-<div class="section">
-<h2 class="Documentation" id="Documentation" name="Documentation">Τεκμηρίωση και προγράμματα εκμάθησης</h2>
-
-<dl>
- <dt>Βασικές έννοιες CSS</dt>
- <dd>Περιγράφει <a href="/el/docs/">τη σύνταξη και τις δομές της γλώσσας</a> και εισάγει βασικά στοιχεία όπως η <a href="/el/docs/">εξειδίκευση</a> και η <a href="/el/docs/">κληρονομικότητα</a>, το <a href="/el/docs/">μοντέλο box</a> και το <a href="/el/docs/">margin collapsing</a>, <a href="/el/docs/">stacking</a> και <a href="/el/docs/">block-formatting</a> πλαίσια, ή τις <a href="/el/docs/">initial</a>, <a href="/el/docs/">computed</a>, <a href="/el/docs/">used</a> και <a href="/el/docs/">actual</a> αξίες. Ορίζονται επίσης οντότητες όπως οι <a href="/el/docs/">CSS shorthand properties</a>.</dd>
- <dt><a href="/en-US/docs/Web/Guide/CSS">CSS developer guide</a></dt>
- <dd>Articles to help you learn <strong>CSS</strong> techniques to make your content shine.</dd>
- <dt><a href="/en-US/docs/Web/CSS/Common_CSS_Questions">Common CSS questions</a></dt>
- <dd>Answers to common questions about <strong>CSS</strong>.</dd>
-</dl>
-
-<h2 class="Tools" id="Tools" name="Tools">Εργαλεία για CSS ανάπτυξη</h2>
-
-<ul>
- <li>The <a class="external" href="http://jigsaw.w3.org/css-validator/">W3C CSS Validation Service</a> checks if a given CSS is valid. The service at <a href="//www.OnlineWebCheck.com/">OnlineWebCheck.com</a> also does the same. These are invaluable debugging tools.</li>
- <li><a href="/en-US/docs/Tools">Firefox Developer Tools</a> allow viewing and editing live CSS of a page via the <a href="/en-US/docs/Tools/Page_Inspector">Inspector</a> and <a href="/en-US/docs/Tools/Style_Editor">Style Editor</a> tools.</li>
- <li><a class="link-https" href="https://addons.mozilla.org/en-US/firefox/addon/1843">Firebug extension</a> for Firefox, a popular extension of that navigator that allows to edit live CSS on watched sites. Very practical to test some changes, though this extension does much more.</li>
- <li><a class="link-https" href="https://addons.mozilla.org/en-US/firefox/addon/60">Web Developer extension</a> for Firefox also allows to watch and edit live CSS on watched sites. Simpler than Firebug, though less powerful.</li>
- <li><a class="external link-https" href="https://addons.mozilla.org/en-US/firefox/addon/179">EditCSS extension</a> for Firefox allows editing CSS in the sidebar.</li>
-</ul>
-</div>
-
-<div class="section">
-<h2 class="Related_Topics" id="News" name="News">Νέα</h2>
-
-<ul>
- <li><a href="http://www.w3.org/TR/css-text-decor-3/">CSS Text-decoration Level 3</a> reached the <em>Candidate Recommandation</em> status, defining that the <code>text-decoration-*</code> and <code>text-emphasis-*</code> properties. The long known {{cssxref("text-shadow")}} is also defined in it. (<em>August 1st, 2013)</em></li>
- <li>Gecko's now support {{cssxref("background-origin")}}<code>: local</code>. It will be available from Firefox 25 (and already is in Nightly). <em>(July 25th, 2013)</em></li>
- <li><a href="http://www.w3.org/TR/pointerevents/">Pointer Events</a> reached the <em>Candidate Recommandation</em> status, meaning that the CSS property <code>touch-action</code>, currently only implemented in IE10 (with the <code>-ms-</code> prefix), is no more experimental. <em>(May 6th, 2013)</em></li>
- <li>Gecko's support of <a href="/en-US/docs/CSS/Tutorials/Using_CSS_flexible_boxes"><em>flexible boxes</em></a> has been adapted to match a recent specification clarification: from Firefox 23 {{cssxref("::before")}} and {{cssxref("::after")}} will be flex items, and as such can be repositioned using {{cssxref("order")}} and {{cssxref("align-self")}}. <em>(May 3rd, 2013)</em></li>
-</ul>
-
-<h2 class="Related_Topics" id="Related_Topics" name="Related_Topics">Σχετικά Άρθρα</h2>
-
-<ul>
- <li>Mozilla Learn <a href="/en-US/learn/css">CSS resources</a>.</li>
- <li>Open Web languages on which CSS is often applied: <a href="/en-US/docs/HTML">HTML</a>, <a href="/en-US/docs/SVG">SVG</a>, <a href="/en-US/docs/XHTML">XHTML</a>, <a href="/en-US/docs/XML">XML</a>.</li>
- <li>Mozilla technologies which make extensive use of CSS: <a href="/en-US/docs/XUL">XUL</a>, Firefox and Thunderbird <a href="/en-US/docs/Extensions">extensions</a> and <a href="/en-US/docs/Themes">themes</a>.</li>
-</ul>
-</div>
-</div>
-</section>
diff --git a/files/el/web/html/element/embed/index.html b/files/el/web/html/element/embed/index.html
deleted file mode 100644
index 0a6e398b10..0000000000
--- a/files/el/web/html/element/embed/index.html
+++ /dev/null
@@ -1,120 +0,0 @@
----
-title: '<embed>: The Embed External Content element'
-slug: Web/HTML/Element/embed
-translation_of: Web/HTML/Element/embed
----
-<div>{{HTMLRef}}</div>
-
-<p>The <strong>HTML <code>&lt;embed&gt;</code> element</strong> embeds external content at the specified point in the document. This content is provided by an external application or other source of interactive content such as a browser plug-in.</p>
-
-<div>{{EmbedInteractiveExample("pages/tabbed/embed.html", "tabbed-standard")}}</div>
-
-<div class="hidden">The source for this interactive example is stored in a GitHub repository. If you'd like to contribute to the interactive examples project, please clone <a href="https://github.com/mdn/interactive-examples">https://github.com/mdn/interactive-examples </a> and send us a pull request.</div>
-
-<div class="blockIndicator note">
-<p><strong>Note:</strong> This topic documents only the element that is defined as part of HTML5. It does not address earlier, non-standardized implementation of the element.</p>
-</div>
-
-<p>Keep in mind that most modern browsers have deprecated and removed support for browser plug-ins, so relying upon <code>&lt;embed&gt;</code> is generally not wise if you want your site to be operable on the average user's browser.</p>
-
-<table class="properties">
- <tbody>
- <tr>
- <th scope="row"><a href="/en-US/docs/Web/Guide/HTML/Content_categories">Content categories</a></th>
- <td><a href="/en-US/docs/Web/Guide/HTML/Content_categories#Flow_content">Flow content</a>, <a href="/en-US/docs/Web/Guide/HTML/Content_categories#Phrasing_content">phrasing content</a>, embedded content, interactive content, <a href="/en-US/docs/Web/Guide/HTML/Content_categories#Palpable_content">palpable content</a>.</td>
- </tr>
- <tr>
- <th scope="row">Permitted content</th>
- <td>None, it is an {{Glossary("empty element")}}.</td>
- </tr>
- <tr>
- <th scope="row">Tag omission</th>
- <td>Must have a start tag, and must not have an end tag.</td>
- </tr>
- <tr>
- <th scope="row">Permitted parents</th>
- <td>Any element that accepts embedded content.</td>
- </tr>
- <tr>
- <th scope="row">Implicit ARIA role</th>
- <td><a href="https://www.w3.org/TR/html-aria/#dfn-no-corresponding-role">No corresponding role</a></td>
- </tr>
- <tr>
- <th scope="row">Permitted ARIA roles</th>
- <td>{{ARIARole("application")}}, {{ARIARole("document")}}, {{ARIARole("img")}}, {{ARIARole("none")}}, {{ARIARole("presentation")}}</td>
- </tr>
- <tr>
- <th scope="row">DOM interface</th>
- <td>{{domxref("HTMLEmbedElement")}}</td>
- </tr>
- </tbody>
-</table>
-
-<h2 id="Attributes">Attributes</h2>
-
-<p>This element's attributes include the <a href="/en-US/docs/Web/HTML/Global_attributes">global attributes</a>.</p>
-
-<dl>
- <dt>{{htmlattrdef("height")}}</dt>
- <dd>The displayed height of the resource, in <a href="https://drafts.csswg.org/css-values/#px">CSS pixels</a>. This must be an absolute value; percentages are <em>not</em> allowed.</dd>
- <dt>{{htmlattrdef("src")}}</dt>
- <dd>The URL of the resource being embedded.</dd>
- <dt>{{htmlattrdef("type")}}</dt>
- <dd>The {{glossary("MIME type")}} to use to select the plug-in to instantiate.</dd>
- <dt>{{htmlattrdef("width")}}</dt>
- <dd>The displayed width of the resource, in <a href="https://drafts.csswg.org/css-values/#px">CSS pixels</a>. This must be an absolute value; percentages are <em>not</em> allowed.</dd>
-</dl>
-
-<h2 id="Usage_notes">Usage notes</h2>
-
-<p>You can use the {{cssxref("object-position")}} property to adjust the positioning of the embedded object within the element's frame, and the {{cssxref("object-fit")}} property to control how the object's size is adjusted to fit within the frame.</p>
-
-<h2 id="Παράδειγμα">Παράδειγμα</h2>
-
-<pre class="brush: html notranslate">&lt;embed type="video/quicktime" src="movie.mov" width="640" height="480" title="Title of my video"&gt;
-</pre>
-
-<h2 id="Accessibility_concerns">Accessibility concerns</h2>
-
-<p>Use the <a href="/en-US/docs/Web/HTML/Global_attributes/title"><code>title</code> attribute</a> on an <code>embed</code> element to label its content so that people navigating with assistive technology such as a screen reader can understand what it contains. The title's value should concisely describe the embedded content. Without a title, they may not be able to determine what its embedded content is. This context shift can be confusing and time-consuming, especially if the <code>embed</code> element contains interactive content like video or audio.</p>
-
-<h2 id="Specifications">Specifications</h2>
-
-<table class="standard-table">
- <thead>
- <tr>
- <th scope="col">Specification</th>
- <th scope="col">Status</th>
- <th scope="col">Comment</th>
- </tr>
- </thead>
- <tbody>
- <tr>
- <td>{{SpecName('HTML WHATWG', 'embedded-content.html#the-embed-element', '&lt;embed&gt;')}}</td>
- <td>{{Spec2('HTML WHATWG')}}</td>
- <td></td>
- </tr>
- <tr>
- <td>{{SpecName('HTML5 W3C', 'semantics-embedded-content.html#the-embed-element', '&lt;embed&gt;')}}</td>
- <td>{{Spec2('HTML5 W3C')}}</td>
- <td></td>
- </tr>
- </tbody>
-</table>
-
-<h2 id="Browser_compatibility">Browser compatibility</h2>
-
-<div class="note">
-<p><strong>Note</strong>: Prior to version 45, Firefox did not display content of HTML resource, but a generic message saying the content needs a plug-in (see {{Bug("730768")}}).</p>
-</div>
-
-<div class="hidden">The compatibility table in this page is generated from structured data. If you'd like to contribute to the data, please check out <a class="external" href="https://github.com/mdn/browser-compat-data">https://github.com/mdn/browser-compat-data</a> and send us a pull request.</div>
-
-<p>{{Compat("html.elements.embed")}}</p>
-
-<h2 id="See_also">See also</h2>
-
-<ul>
- <li>Other elements that are used for embedding content of various types include {{HTMLElement("audio")}}, {{HTMLElement("canvas")}}, {{HTMLElement("iframe")}}, {{HTMLElement("img")}}, {{MathMLElement("math")}}, {{HTMLElement("object")}}, {{SVGElement("svg")}}, and {{HTMLElement("video")}}.</li>
- <li>Positioning and sizing the embedded content within its frame: {{cssxref("object-position")}} and {{cssxref("object-fit")}}</li>
-</ul>
diff --git a/files/el/web/html/element/index.html b/files/el/web/html/element/index.html
deleted file mode 100644
index 216697c5a6..0000000000
--- a/files/el/web/html/element/index.html
+++ /dev/null
@@ -1,109 +0,0 @@
----
-title: HTML elements reference
-slug: Web/HTML/Element
-tags:
- - Basic
- - Element
- - HTML
- - NeedsTranslation
- - Reference
- - TopicStub
- - Web
- - 'l10n:priority'
-translation_of: Web/HTML/Element
----
-<div>{{HTMLSidebar("Elements")}}</div>
-
-<p><span class="seoSummary">This page lists all the {{Glossary("HTML")}} {{Glossary("Element","elements")}}, which are created using {{Glossary("Tag", "tags")}}.</span> They are grouped by function to help you find what you have in mind easily. An alphabetical list of all elements is provided in the sidebar on every element's page as well as this one.</p>
-
-<div class="note">
-<p>For more information about the basics of HTML elements and attributes, see <a href="/en-US/docs/Web/Guide/HTML/Introduction#Elements_%E2%80%94_the_basic_building_blocks">the section on elements in the Introduction to HTML article</a>.</p>
-</div>
-
-<h2 id="Main_root">Main root</h2>
-
-<p>{{HTMLRefTable("HTML Root Element")}}</p>
-
-<h2 id="Document_metadata">Document metadata</h2>
-
-<p>Metadata contains information about the page. This includes information about styles, scripts and data to help software ({{Glossary("search engine", "search engines")}}, {{Glossary("Browser","browsers")}}, etc.) use and render the page. Metadata for styles and scripts may be defined in the page or link to another file that has the information. </p>
-
-<p>{{HTMLRefTable("HTML Document Metadata")}}</p>
-
-<h2 id="Sectioning_root">Sectioning root</h2>
-
-<p>{{HTMLRefTable("Sectioning Root Element")}}</p>
-
-<h2 id="Content_sectioning">Content sectioning</h2>
-
-<p>Content sectioning elements allow you to organize the document content into logical pieces. Use the sectioning elements to create a broad outline for your page content, including header and footer navigation, and heading elements to identify sections of content.   </p>
-
-<p>{{HTMLRefTable("HTML Sections")}}</p>
-
-<h2 id="Text_content">Text content</h2>
-
-<p>Use HTML text content elements to organize blocks or sections of content placed between the opening {{HTMLElement("body")}} and closing <code>&lt;/body&gt;</code> tags. Important for {{Glossary("accessibility")}} and {{Glossary("SEO")}}, these elements identify the purpose or structure of that content.     </p>
-
-<p>{{HTMLRefTable("HTML Grouping Content")}}</p>
-
-<h2 id="Inline_text_semantics">Inline text semantics</h2>
-
-<p>Use the HTML inline text semantic to define the meaning, structure, or style of a word, line, or any arbitrary piece of text.</p>
-
-<p>{{HTMLRefTable("HTML Text-Level Semantics")}}</p>
-
-<h2 id="Image_and_multimedia">Image and multimedia</h2>
-
-<p>HTML supports various multimedia resources such as images, audio, and video.</p>
-
-<p>{{HTMLRefTable("multimedia")}}</p>
-
-<h2 id="Embedded_content">Embedded content</h2>
-
-<p>In addition to regular multimedia content, HTML can include a variety of other content, even if it's not always easy to interact with.</p>
-
-<p>{{HTMLRefTable({"include":["HTML embedded content"], "exclude":["multimedia"]})}}</p>
-
-<h2 id="Scripting">Scripting</h2>
-
-<p>In order to create dynamic content and Web applications, HTML supports the use of scripting languages, most prominently JavaScript. Certain elements support this capability.</p>
-
-<p>{{HTMLRefTable("HTML Scripting")}}</p>
-
-<h2 id="Demarcating_edits">Demarcating edits</h2>
-
-<p>These elements let you provide indications that specific parts of the text have been altered.</p>
-
-<p>{{HTMLRefTable("HTML Edits")}}</p>
-
-<h2 id="Table_content">Table content</h2>
-
-<p>The elements here are used to create and handle tabular data.</p>
-
-<p>{{HTMLRefTable("HTML tabular data")}}</p>
-
-<h2 id="Forms">Forms</h2>
-
-<p>HTML provides a number of elements which can be used together to create forms which the user can fill out and submit to the Web site or application. There's a great deal of further information about this available in the <a href="/en-US/docs/Web/Guide/HTML/Forms">HTML forms guide</a>.</p>
-
-<p>{{HTMLRefTable({"include": ["HTML forms"], "exclude":["Deprecated"]})}}</p>
-
-<h2 id="Interactive_elements">Interactive elements</h2>
-
-<p>HTML offers a selection of elements which help to create interactive user interface objects.</p>
-
-<p>{{HTMLRefTable("HTML interactive elements")}}</p>
-
-<h2 id="Web_Components">Web Components</h2>
-
-<p>Web Components is an HTML-related technology which makes it possible to, essentially, create and use custom elements as if it were regular HTML. In addition, you can create custom versions of standard HTML elements.</p>
-
-<p>{{HTMLRefTable({"include":["Web Components"],"exclude":["Deprecated", "Obsolete"]})}}</p>
-
-<h2 id="Obsolete_and_deprecated_elements">Obsolete and deprecated elements</h2>
-
-<div class="warning">
-<p><strong>Warning:</strong> These are old HTML elements which are deprecated and should not be used. <strong>You should never use them in new projects, and should replace them in old projects as soon as you can.</strong> They are listed here for informational purposes only.</p>
-</div>
-
-<p>{{HTMLRefTable({"include":["Deprecated","Obsolete"]})}}</p>
diff --git a/files/el/web/html/index.html b/files/el/web/html/index.html
deleted file mode 100644
index 81b787c6ed..0000000000
--- a/files/el/web/html/index.html
+++ /dev/null
@@ -1,109 +0,0 @@
----
-title: 'HTML: HyperText Markup Language'
-slug: Web/HTML
-tags:
- - HTML
- - HTML5
- - Landing
- - NeedsTranslation
- - TopicStub
- - Web
- - 'l10n:priority'
-translation_of: Web/HTML
----
-<div>{{HTMLSidebar}}</div>
-
-<p class="summary"><span class="seoSummary"><strong>HTML</strong> (HyperText Markup Language) is the most basic building block of the Web. It defines the meaning and structure of web content. Other technologies besides HTML are generally used to describe a web page's appearance/presentation (<a href="/en-US/docs/Web/CSS">CSS</a>) or functionality/behavior (<a href="/en-US/docs/Web/JavaScript">JavaScript</a>).</span></p>
-
-<p>"Hypertext" refers to links that connect web pages to one another, either within a single website or between websites. Links are a fundamental aspect of the Web. By uploading content to the Internet and linking it to pages created by other people, you become an active participant in the World Wide Web.</p>
-
-<p>HTML uses "markup" to annotate text, images, and other content for display in a Web browser. HTML markup includes special "elements" such as {{HTMLElement("head")}}, {{HTMLElement("title")}}, {{HTMLElement("body")}}, {{HTMLElement("header")}}, {{HTMLElement("footer")}}, {{HTMLElement("article")}}, {{HTMLElement("section")}}, {{HTMLElement("p")}}, {{HTMLElement("div")}}, {{HTMLElement("span")}}, {{HTMLElement("img")}}, {{HTMLElement("aside")}}, {{HTMLElement("audio")}}, {{HTMLElement("canvas")}}, {{HTMLElement("datalist")}}, {{HTMLElement("details")}}, {{HTMLElement("embed")}}, {{HTMLElement("nav")}}, {{HTMLElement("output")}}, {{HTMLElement("progress")}}, {{HTMLElement("video")}}, {{HTMLElement("ul")}}, {{HTMLElement("ol")}}, {{HTMLElement("li")}} and many others.</p>
-
-<p>An HTML element is set off from other text in a document by "tags", which consist of the element name surrounded by "<code>&lt;</code>" and "<code>&gt;</code>".  The name of an element inside a tag is case insensitive. That is, it can be written in uppercase, lowercase, or a mixture. For example, the <code>&lt;title&gt;</code> tag can be written as <code>&lt;Title&gt;</code>, <code>&lt;TITLE&gt;</code>, or in any other way.</p>
-
-<p>The articles below can help you learn more about HTML.</p>
-
-<h2 id="Key_resources">Key resources</h2>
-
-<dl>
- <dt><span>HTML Introduction</span></dt>
- <dd>If you're new to Web development, be sure to read our <a href="/en-US/docs/Learn/Getting_started_with_the_web/HTML_basics">HTML Basics</a> article to learn what HTML is and how to use it.</dd>
- <dt><span>HTML Tutorials</span></dt>
- <dd>For articles about how to use HTML, as well as tutorials and complete examples, check out our <a href="/en-US/docs/Learn/HTML">HTML Learning Area</a>.</dd>
- <dt><span>HTML Reference</span></dt>
- <dd>In our extensive <a href="/en-US/docs/Web/HTML/Reference">HTML reference</a> section, you'll find the details about every element and attribute in HTML.</dd>
-</dl>
-
-<div class="callout">
-<h3 id="Looking_to_become_a_front-end_web_developer">Looking to become a front-end web developer?</h3>
-
-<p>We have put together a course that includes all the essential information you need to work towards your goal.</p>
-
-<p><a class="cta primary" href="/docs/Learn/Front-end_web_developer">Get started</a></p>
-</div>
-
-<div class="row topicpage-table">
-<div class="section">
-<h2 class="Tools" id="Beginners_tutorials">Beginner's tutorials</h2>
-
-<p>Our <a href="/en-US/docs/Learn/HTML">HTML Learning Area</a> features multiple modules that teach HTML from the ground up — no previous knowledge required.</p>
-
-<dl>
- <dt><a href="/en-US/docs/Learn/HTML/Introduction_to_HTML">Introduction to HTML</a></dt>
- <dd>This module sets the stage, getting you used to important concepts and syntax such as looking at applying HTML to text, how to create hyperlinks, and how to use HTML to structure a web page.</dd>
- <dt><a href="/en-US/docs/Learn/HTML/Multimedia_and_embedding">Multimedia and embedding</a></dt>
- <dd>This module explores how to use HTML to include multimedia in your web pages, including the different ways that images can be included, and how to embed video, audio, and even entire other webpages.</dd>
- <dt><a href="/en-US/docs/Learn/HTML/Tables">HTML tables</a></dt>
- <dd>Representing tabular data on a webpage in an understandable, accessible way can be a challenge. This module covers basic table markup, along with more complex features such as implementing captions and summaries.</dd>
- <dt><a href="/en-US/docs/Learn/HTML/Forms">HTML forms</a></dt>
- <dd>Forms are a very important part of the Web — these provide much of the functionality you need for interacting with websites, e.g. registering and logging in, sending feedback, buying products, and more. This module gets you started with creating the client-side/front-end parts of forms.</dd>
- <dt><a href="/en-US/docs/Learn/HTML/Howto">Use HTML to solve common problems</a></dt>
- <dd>Provides links to sections of content explaining how to use HTML to solve very common problems when creating a web page: dealing with titles, adding images or videos, emphasizing content, creating a basic form, etc.</dd>
-</dl>
-
-<h2 id="Advanced_topics">Advanced topics</h2>
-
-<dl>
- <dt class="landingPageList"><a href="/en-US/docs/Web/HTML/CORS_enabled_image">CORS enabled image</a></dt>
- <dd class="landingPageList">The {{htmlattrxref("crossorigin", "img")}} attribute, in combination with an appropriate {{glossary("CORS")}} header, allows images defined by the {{HTMLElement("img")}} element to be loaded from foreign origins and used in a {{HTMLElement("canvas")}} element as if they were being loaded from the current origin.</dd>
- <dt class="landingPageList"><a href="/en-US/docs/Web/HTML/CORS_settings_attributes">CORS settings attributes</a></dt>
- <dd class="landingPageList">Some HTML elements that provide support for <a href="/en-US/docs/Web/HTTP/CORS">CORS</a>, such as {{HTMLElement("img")}} or {{HTMLElement("video")}}, have a <code>crossorigin</code> attribute (<code>crossOrigin</code> property), which lets you configure the CORS requests for the element's fetched data.</dd>
- <dt class="landingPageList"><a href="/en-US/docs/Web/HTML/Preloading_content">Preloading content with rel="preload"</a></dt>
- <dd class="landingPageList">The <code>preload</code> value of the {{htmlelement("link")}} element's {{htmlattrxref("rel", "link")}} attribute allows you to write declarative fetch requests in your HTML {{htmlelement("head")}}, specifying resources that your pages will need very soon after loading, which you therefore want to start preloading early in the lifecycle of a page load, before the browser's main rendering machinery kicks in. This ensures that they are made available earlier and are less likely to block the page's first render, leading to performance improvements. This article provides a basic guide to how <code>preload</code> works.</dd>
-</dl>
-</div>
-
-<div class="section">
-<h2 class="Documentation" id="References">References</h2>
-
-<dl>
- <dt class="landingPageList"><a href="/en-US/docs/Web/HTML/Reference">HTML reference</a></dt>
- <dd class="landingPageList">HTML consists of <strong>elements</strong>, each of which may be modified by some number of <strong>attributes</strong>. HTML documents are connected to each other with <a href="/en-US/docs/Web/HTML/Link_types">links</a>.</dd>
- <dt class="landingPageList"><a href="/en-US/docs/Web/HTML/Element">HTML element reference</a></dt>
- <dd class="landingPageList">Browse a list of all {{glossary("HTML")}} {{glossary("Element", "elements")}}.</dd>
- <dt class="landingPageList"><a href="/en-US/docs/Web/HTML/Attributes">HTML attribute reference</a></dt>
- <dd class="landingPageList">Elements in HTML have <strong>attributes</strong>. These are additional values that configure the elements or adjust their behavior in various ways.</dd>
- <dt class="landingPageList"><a href="/en-US/docs/Web/HTML/Global_attributes">Global attributes</a></dt>
- <dd class="landingPageList">Global attributes may be specified on all <a href="/en-US/docs/Web/HTML/Element">HTML elements</a>, <em>even those not specified in the standard</em>. This means that any non-standard elements must still permit these attributes, even though those elements make the document HTML5-noncompliant.</dd>
- <dt class="landingPageList"><a href="/en-US/docs/Web/HTML/Inline_elements">Inline elements</a> and <a href="/en-US/docs/Web/HTML/Block-level_elements">block-level elements</a></dt>
- <dd class="landingPageList">HTML elements are usually "inline" or "block-level" elements. An inline element occupies only the space bounded by the tags that define it. A block-level element occupies the entire space of its parent element (container), thereby creating a "block."</dd>
- <dt class="landingPageList"><a href="/en-US/docs/Web/HTML/Link_types">Link types</a></dt>
- <dd class="landingPageList">In HTML, various link types can be used to establish and define the relationship between two documents. Link elements that types can be set on include {{HTMLElement("a")}}, {{HTMLElement("area")}} and {{HTMLElement("link")}}.</dd>
- <dt class="landingPageList"><a href="/en-US/docs/Web/Media/Formats">Guide to media types and formats on the web</a></dt>
- <dd class="landingPageList">The {{HTMLElement("audio")}} and {{HTMLElement("video")}} elements allow you to play audio and video media natively within your content without the need for external software support.</dd>
- <dt class="landingPageList"><a href="/en-US/docs/Web/Guide/HTML/Content_categories">HTML content categories</a></dt>
- <dd class="landingPageList">HTML is comprised of several kinds of content, each of which is allowed to be used in certain contexts and is disallowed in others. Similarly, each has a set of other content categories they can contain and elements that can or can't be used in them. This is a guide to these categories.</dd>
- <dt class="landingPageList"><a href="/en-US/docs/Web/HTML/Quirks_Mode_and_Standards_Mode">Quirks mode and standards mode</a></dt>
- <dd class="landingPageList">Historical information on quirks mode and standards mode.</dd>
-</dl>
-
-<h2 class="landingPageList" id="Related_topics">Related topics</h2>
-
-<dl>
- <dt><a href="/en-US/docs/Web/HTML/Applying_color">Applying color to HTML elements using CSS</a></dt>
- <dd>This article covers most of the ways you use CSS to add color to HTML content, listing what parts of HTML documents can be colored and what CSS properties to use when doing so. Includes examples, links to palette-building tools, and more.</dd>
-</dl>
-</div>
-</div>
-
-<p><span class="alllinks"><a href="/en-US/docs/tag/HTML">View All...</a></span></p>
diff --git a/files/el/web/index.html b/files/el/web/index.html
deleted file mode 100644
index c3027373cc..0000000000
--- a/files/el/web/index.html
+++ /dev/null
@@ -1,72 +0,0 @@
----
-title: Web technology for developers
-slug: Web
-tags:
- - Landing
- - NeedsTranslation
- - TopicStub
- - Web
-translation_of: Web
----
-<p>The open Web presents incredible opportunities for developers. To take full advantage of these technologies, you need to know how to use them. Below you'll find links to our Web technology documentation.</p>
-
-
-<div class="row topicpage-table">
- <div class="section">
- <h2 class="Documentation" id="Docs_for_add-on_developers" name="Docs_for_add-on_developers">Documentation for Web developers</h2>
- <dl>
- <dt>
- <a href="/en-US/docs/Web/Reference">Web Developer Reference</a></dt>
- <dd>
- A list of all references for Web technologies, including those for HTML, CSS, and so on.</dd>
- <dt>
- <a href="/en-US/docs/Web/Guide">Web Developer Guide</a></dt>
- <dd>
- The Web Developer Guide provides useful how-to content to help you actually use Web technologies to do what you want or need to do.</dd>
- <dt>
- <a href="/en-US/docs/Web/Tutorials">Tutorials for Web developers</a></dt>
- <dd>
- A list of tutorials to take you step-by-step through learning APIs, technologies, or broad topic areas.</dd>
- <dt>
- <a href="/en-US/docs/Web/Apps">Developing Web applications</a></dt>
- <dd>
- Documentation for Web application developers; Web apps are true write-once, deploy anywhere apps for mobile, desktop, and Firefox OS.</dd>
- <dt>
- <a href="/en-US/docs/Code_snippets">Code snippets</a></dt>
- <dd>
- This is a quick list of useful code snippets (small code samples) available for developers of extensions for the various Mozilla applications. Many of these samples can also be used in <a href="/en-US/docs/XULRunner">XULRunner</a> applications, as well as in actual Mozilla code itself.</dd>
- </dl>
- <p><span class="alllinks"><a href="/en-US/docs/tag/Web">View All...</a></span></p>
- </div>
- <div class="section">
- <h2 class="Documentation" id="Docs_for_add-on_developers" name="Docs_for_add-on_developers">Web technology references</h2>
- <dl>
- <dt>
- <a href="/en-US/docs/Web/API">Web APIs</a></dt>
- <dd>
- Reference material for each of the interfaces that comprise the Web's APIs, including the DOM and all of the related APIs and interfaces you can use to build Web content and apps.</dd>
- <dt>
- <a href="/en-US/docs/Web/HTML">HTML</a></dt>
- <dd>
- HyperText Markup Language is the language used to describe and define the content of a Web page.</dd>
- <dt>
- <a href="/en-US/docs/Web/CSS">CSS</a></dt>
- <dd>
- Cascading Style Sheets are used to describe the appearance of Web content.</dd>
- <dt>
- <a href="/en-US/docs/SVG">SVG</a></dt>
- <dd>
- Scalable Vector Graphics let you describe images as sets of vectors and shapes in order to allow them to scale smoothly regardless of the size at which they're drawn.</dd>
- <dt>
- <a href="/en-US/docs/Web/MathML">MathML</a></dt>
- <dd>
- The Mathematical Markup Language makes it possible to display complex mathematical equations and syntax.</dd>
- </dl>
- </div>
-</div>
-
-
-<h3 id="Temporary" name="Temporary">Temporary</h3>
-<p>The stuff below here is temporary to help keep track of things while organization work is ongoing. Pay it no mind.</p>
-
-<div>{{ListSubpages}}</div>
diff --git a/files/el/web/javascript/index.html b/files/el/web/javascript/index.html
deleted file mode 100644
index fbe8c790b4..0000000000
--- a/files/el/web/javascript/index.html
+++ /dev/null
@@ -1,112 +0,0 @@
----
-title: JavaScript
-slug: Web/JavaScript
-translation_of: Web/JavaScript
----
-<div>{{JsSidebar}}</div>
-
-<p class="summary"><strong>Η JavaScript</strong><sup>®</sup> (συντομογραφία <strong>JS</strong>) είναι μια αντικειμενοστρεφής, ελαφριά γλώσσα προγραμματισμού που δεν χρειάζεται μεταγλώτισση (compailation), με <a href="https://en.wikipedia.org/wiki/First-class_functions" title="https://en.wikipedia.org/wiki/First-class_functions">πρώτης κατηγορίας λειτουργίες</a>. Ενώ είναι κυρίως γνωστή ως γλώσσα σενάριου (scripting language) για ιστοσελίδες, ωστόσο <a href="https://en.wikipedia.org/wiki/JavaScript#Uses_outside_web_pages">χρησιμοποιείται σε πολλά περιβάλλοντα χωρίς την χρήση προγράμματος περιήγησης (browser)</a> όπως <a class="external" href="https://nodejs.org/">node.js</a> ή <a href="https://couchdb.apache.org/">Apache CouchDB</a>. Πρόκειται για μια <a href="https://en.wikipedia.org/wiki/Prototype-based_programming">πρωτότυπη</a> , πολλαπλών παραδείγματων scripting γλώσσα προγραμματισμού που είναι δυναμική, και υποστηρίζει αντικειμενοστρεφή, επιβλητικό, και λειτουργικό στυλ του προγραμματισμού. Διαβάστε περισσότερα <a href="/en-US/docs/Web/JavaScript/About_JavaScript">σχετικά με την JavaScript</a>.</p>
-
-<p>Αυτό το τμήμα της ιστοσελίδας είναι αφιερωμένο στην ίδια τη γλώσσα JavaScript, και όχι στα μέρη που δεν είναι ειδικά για ιστοσελίδες ή άλλα περιβάλλοντα υποδοχής. Για πληροφορίες σχετικά με {{Glossary("API","APIs")}} ειδικά για ιστοσελίδες, παρακαλούμε δείτε τα <a href="/en-US/docs/Web/API">Web APIs</a> και <a href="/en-US/docs/Glossary/DOM">DOM</a>.</p>
-
-<p>Το πρότυπο της  JavaScript ονομάζεται <a href="/en-US/docs/JavaScript/Language_Resources">ECMAScript</a>. Από το 2012, όλοι τα σύγχρονα προγράμματα περιήγησης (browsers) υποστηρίζουν πλήρως την ECMAScript 5.1. Παλαιότεροι φυλλομετρητές υποστηρίζουν τουλάχιστον την ECMAScript 3. Στις 17 Ιουνίου του 2015, δημοσιεύθηκε η 6η κύρια έκδοση της ECMAScript. Επίσημα η έκδοση αυτή ονομάζεται ECMAScript 2015, αλλά συχνά αναφέρεται και ως ECMAScript 6 ή ES6. Το εγχειρίδιο που παρουσιάζεται καλύπτει την ECMAScript 6 ενώ έχει ήδη ξεκινήσει η διαδικασία με τα πρώτα τμήματα της ECMAScript 7.</p>
-
-<p>Δεν πρέπει να μπερδεύουμε την JavaScript με την <a href="https://en.wikipedia.org/wiki/Java_(programming_language)">Java programming language</a>. Η Java είναι εμπορικά κατοχυρωμένη από την Oracle στις Η.Π.Α. και σε άλλες χώρες.  Ωστόσο οι δύο αυτές γλώσσες προγραμματισμού έχουν διαφορετική σύνταξη, φρασεολογία και χρήσεις.</p>
-
-<div class="column-container">
-<div class="column-half">
-<h2 id="ΜΑΘΗΜΑΤΑ">ΜΑΘΗΜΑΤΑ</h2>
-
-<p>Μάθε πως να προγραμματίζεις με την JavaScript με οδηγίες και μαθήματα.</p>
-
-<h3 id="Για_αρχάριους">Για αρχάριους</h3>
-
-<p>Περιηγηθείτε στην ενότητα <a href="https://developer.mozilla.org/en-US/docs/Learn/JavaScript">Περιοχή μαθημάτων της Javascript</a> αν θέλετε να μάθετε Javascript αλλά δεν έχετε προηγούμενη εμπειρία. Οι πλήρεις ενότητες που παρέχονται είναι οι εξής :</p>
-
-<dl>
- <dt><a href="https://developer.mozilla.org/en-US/docs/Learn/JavaScript/First_steps">JavaScript τα πρώτα βήματα</a></dt>
- <dd>Απαντά σε ορισμένα θεμελιώδη ερωτήματα όπως τι είναι το JavaScript, με τι μοιάζει, και τι μπορεί να κάνει καθώς και τα βασικά χαρακτηριστικά της Javascript όπως μεταβλητές, συμβολοσειρές, αριθμούς και πίνακες.</dd>
- <dt><a href="https://developer.mozilla.org/en-US/docs/Learn/JavaScript/Building_blocks">Δομικά στοιχεία της JavaScript</a></dt>
- <dd>Συνεχίζει την κάλυψη των βασικών θεμελιωδών χαρακτηριστικών της Javascript στρέφοντας την προσοχή μας σε κοινούς τύπους κομματιών κώδικα, όπως οι δηλώσεις συνθήκης (conditional statements), βρόγχους (loops), λειτουργίες (functions) και γεγονότα (events).</dd>
- <dt><a href="https://developer.mozilla.org/en-US/docs/Learn/JavaScript/Objects">Παρουσίαση αντικειμένων (objects) της JavaScript</a></dt>
- <dd>Είναι πολύ σημαντικό να κατανοήσετε την αντικειμενοστραφή (object-oriented) φύση της JavaScript, αν θέλετε να προχωρήσετε περισσότερο με τις γνώσεις σας στη γλώσσα και να γράφετε πιο αποδοτικό κώδικα, γι' αυτό παρέχεται αυτή την ενότητα για να σας βοηθήσει.</dd>
-</dl>
-
-<h3 id="Οδηγός_Javascript">Οδηγός Javascript</h3>
-
-<dl>
- <dt><a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide">Οδηγός Javascript</a></dt>
- <dd>Ένας αναλυτικότερος οδηγός για την Javascript για εκείνους που έχουν προηγούμενη εμπειρία είτε στην Javascript είτε σε κάποια άλλη γλώσσα προγραματισμού.</dd>
-</dl>
-
-<h3 id="Μεσαίο_επίπεδο"><span style="">Μεσαίο επίπεδο</span></h3>
-
-<ul>
- <li>αυστηρή ισότητα χρησιμοποιώντας ===</li>
- <li> χαλαρή ισότητα χρησιμοποιώντας ==</li>
- <li>την μέθοδο <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/is">Object.is()</a></li>
-</ul>
-
-<dl>
- <dt><a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/A_re-introduction_to_JavaScript">Εισαγωγή ξανά στην JavaScript</a></dt>
- <dd><span style="font-weight: normal;">Επισκόπηση για εκείνους που νομίζουν ότι γνωρίζουν σχετικά με την Javascript.</span></dd>
- <dt><a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Data_structures">Δόμες δεδομένων της JavaScript</a></dt>
- <dd>Επισκόπηση των διαθέσιμων δομών δεδομένων στην JavaScript.</dd>
- <dt><a href="/en-US/docs/Web/JavaScript/Equality_comparisons_and_sameness">Συγκρίσεις ισότητας και ομοιότητας</a></dt>
- <dd>Η Javascript προσφέρει τρεις διαφορετικές λειτουργίες σύγκρισης αξίας : </dd>
-</dl>
-
-<h3 id="Για_προχωρημένους">Για προχωρημένους</h3>
-
-<dl>
- <dt><a href="/en-US/docs/Web/JavaScript/Inheritance_and_the_prototype_chain">Κληρονομικότητα και η αλυσίδα των πρωτότυπων</a></dt>
- <dd>Επεξήγηση της ευρέως παρεξηγημένης και υποτιμημένης κληρονομικότητας που βασίζεται στα πρωτότυπα.</dd>
- <dt><a href="/en-US/docs/Web/JavaScript/Reference/Strict_mode">Αυστηρή λειτουργία</a></dt>
- <dd>Η αυστηρή λειτουργία ορίζει ότι δεν μπορείτε να χρησιμοποιήσετε οποιαδήποτε μεταβλητή πριν την αρχικοποίηση της. Πρόκειται για μια περιορισμένη παραλλαγή του ECMAScript 5 για την ταχύτερη απόδοση και τον ευκολότερο εντοπισμό σφαλμάτων.</dd>
- <dt><a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Typed_arrays">JavaScript typed arrays</a></dt>
- <dd>JavaScript typed arrays provide a mechanism for accessing raw binary data.</dd>
- <dt><a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Memory_Management">Διαχείρηση Μνήμης</a></dt>
- <dd>Κύκλος ζωής μνήμης και συλλογή απορριμάτων στην JavaScript.</dd>
- <dt><a href="/en-US/docs/Web/JavaScript/EventLoop">Μοντέλο συγχρονισμού και Βρόγχος Γεγονότων.</a></dt>
- <dd>Η JavaScript έχει ένα μοντέλο συγχρονισμού βασισμένο σε έναν "βρόγχο (Λούπα) γεγονότος".</dd>
-</dl>
-</div>
-
-<div class="column-half">
-<h2 id="Reference">Reference</h2>
-
-<p>Browse the complete <a href="/en-US/docs/Web/JavaScript/Reference">JavaScript reference</a> documentation.</p>
-
-<dl>
- <dt><a href="/en-US/docs/Web/JavaScript/Reference/Global_Objects">Standard objects</a></dt>
- <dd>Εξοικιωθείτε με τα standard built-in αντικείμενα {{jsxref("Array")}}, {{jsxref("Boolean")}}, {{jsxref("Date")}}, {{jsxref("Error")}}, {{jsxref("Function")}}, {{jsxref("JSON")}}, {{jsxref("Math")}}, {{jsxref("Number")}}, {{jsxref("Object")}}, {{jsxref("RegExp")}}, {{jsxref("String")}}, {{jsxref("Map")}}, {{jsxref("Set")}}, {{jsxref("WeakMap")}} , {{jsxref("WeakSet")}}, και άλλα.</dd>
- <dt><a href="/en-US/docs/Web/JavaScript/Reference/Operators">Expressions and operators</a></dt>
- <dd>Learn more about the behavior of JavaScript's operators {{jsxref("Operators/instanceof", "instanceof")}}, {{jsxref("Operators/typeof", "typeof")}}, {{jsxref("Operators/new", "new")}}, {{jsxref("Operators/this", "this")}}, the <a href="/en-US/docs/Web/JavaScript/Reference/Operators/Operator_Precedence">operator precedence</a>, and more.</dd>
- <dt><a href="/en-US/docs/Web/JavaScript/Reference/Statements">Statements and declarations</a></dt>
- <dd>Learn how {{jsxref("Statements/do...while", "do-while")}}, {{jsxref("Statements/for...in", "for-in")}}, {{jsxref("Statements/for...of", "for-of")}}, {{jsxref("Statements/try...catch", "try-catch")}}, {{jsxref("Statements/let", "let")}}, {{jsxref("Statements/var", "var")}}, {{jsxref("Statements/const", "const")}}, {{jsxref("Statements/if...else", "if-else")}}, {{jsxref("Statements/switch", "switch")}}, and more JavaScript statements and keywords work.</dd>
- <dt><a href="/en-US/docs/Web/JavaScript/Reference/Functions">Functions</a></dt>
- <dd>Learn how to work with JavaScript's functions to develop your applications.</dd>
-</dl>
-
-<h2 id="Tools_resources">Tools &amp; resources</h2>
-
-<p>Helpful tools while writing and debugging your JavaScript code.</p>
-
-<dl>
- <dt><a href="/en-US/docs/Tools">Firefox Developer Tools</a></dt>
- <dd><a href="/en-US/docs/Tools/Scratchpad">Scratchpad</a>, <a href="/en-US/docs/Tools/Web_Console">Web Console</a>, <a href="/en-US/docs/Tools/Profiler">JavaScript Profiler</a>, <a href="/en-US/docs/Tools/Debugger">Debugger</a>, and more.</dd>
- <dt><a class="external" href="http://www.getfirebug.com/">Firebug</a></dt>
- <dd>Edit, debug, and monitor CSS, HTML, and JavaScript live in any web page.</dd>
- <dt><a href="/en-US/docs/Web/JavaScript/Shells">JavaScript Shells</a></dt>
- <dd>A JavaScript shell allows you to quickly test snippets of JavaScript code.</dd>
- <dt><a href="https://togetherjs.com/">TogetherJS</a></dt>
- <dd>
- <p>Collaboration made easy.</p>
- </dd>
- <dt><a href="http://stackoverflow.com/questions/tagged/javascript">Stack Overflow</a></dt>
- <dd>Stack Overflow questions tagged with "JavaScript".</dd>
- <dt><a href="/en-US/docs/Web/JavaScript/New_in_JavaScript">JavaScript versions and release notes</a></dt>
- <dd>Browse JavaScript's feature history and implementation status.</dd>
-</dl>
-</div>
-</div>
diff --git a/files/el/web/javascript/reference/functions/default_parameters/index.html b/files/el/web/javascript/reference/functions/default_parameters/index.html
deleted file mode 100644
index e3229bc633..0000000000
--- a/files/el/web/javascript/reference/functions/default_parameters/index.html
+++ /dev/null
@@ -1,222 +0,0 @@
----
-title: Προεπιλεγμένες παράμετροι
-slug: Web/JavaScript/Reference/Functions/Default_parameters
-tags:
- - ECMAScript 2015
- - JavaScript
- - Συναρτήσεις
-translation_of: Web/JavaScript/Reference/Functions/Default_parameters
-original_slug: Web/JavaScript/Reference/Functions/Προεπιλεγμένες_παράμετροι
----
-<div>{{jsSidebar("Συναρτήσεις")}}</div>
-
-<p>Οι<strong> προεπιλεγμένες παράμετροι συναρτήσεων</strong> επιτρέπουν την αρχικοποίηση των παραμέτρων με προεπιλεγμένες τιμες, αν η τιμή λείπει ή ειναι τύπου <code>undefined</code>.</p>
-
-<div>{{EmbedInteractiveExample("pages/js/functions-default.html")}}</div>
-
-<p class="hidden">Ο πηγαίος κώδικας αυτού του διαδραστικού παραδείγματος είναι αποθηκευμένος σε ενα GitHub αποθετήριο. Αν θα θέλατε να συμβάλλετε στο έργο των διαδραστικών παραδειγμάτων, παρακαλώ κάντε clone το <a href="https://github.com/mdn/interactive-examples">https://github.com/mdn/interactive-examples</a> και στείλτε μας ενα pull request.</p>
-
-<h2 id="Σύνταξη">Σύνταξη</h2>
-
-<pre class="syntaxbox">function [<em>όνομα</em>]([<em>παράμ1</em>[ = προεπιλεγμένηΤιμή1 ][, ..., <em>παράμN</em>[ = προεπιλεγμένηΤιμήN ]]]) {<em>δηλώσεις</em>
-}
-</pre>
-
-<h2 id="Περιγραφή">Περιγραφή</h2>
-
-<p>Στην JavaScript, οι προεπιλεγμένες παράμετροι των συναρτήσεων ειναι τύπου <code>{{jsxref("undefined")}}</code>. Ωστόσο, σε κάποιες καταστάσεις μπορεί να χρειαστεί να θέσουμε μια διαφορετική προεπιλεγμένη τιμή. Σε αυτή την περίπτωση μπορούν βοηθήσουν οι προεπιλεγμένες παράμετροι.</p>
-
-<p>Στο παρελθόν, η γενική στρατηγική ορισμού προεπιλεγμένων τιμών, ηταν ο έλεγχος των τιμών στο σώμα την συνάρτησης και η εκχώρηση τιμής στην περίπτωση που ήταν τύπου <code>undefined</code>. Αν στο επόμενο παράδειγμα, δεν δοθεί τιμή για την <code>b</code> οταν κλήθει η συναρτηση, η τιμή της θα ήταν <code>undefined</code>  κατα την εκτίμηση του <code>a*b</code> και η κλήση της <code>multiply</code> θα επέστρεφε <code>NaN</code>. Ωστόσο, αυτό αποτρέπεται στην δεύτερη γραμμή του παραδείγματος:</p>
-
-<pre class="brush: js">function multiply(a, b) {
- b = (typeof b !== 'undefined') ? b : 1;
- return a * b;
-}
-
-multiply(5, 2); // 10
-multiply(5, 1); // 5
-multiply(5); // 5
-</pre>
-
-<p>Με τις προεπιλεγμένες παραμέτρους στην ES2015, ο έλεγχος στο σώμα της συνάρτησης δεν ειναι πια απαραίτητος. Τωρα μπορούμε απλα να θέσουμε <code>1</code> ως προεπιλεγμένη τιμή της <code>b</code> στην κεφαλή της συνάρτησης:</p>
-
-<pre class="brush: js">function multiply(a, b = 1) {
- return a * b;
-}
-
-multiply(5, 2); // 10
-multiply(5, 1); // 5
-multiply(5); // 5
-</pre>
-
-<h2 id="Παραδείγματα">Παραδείγματα</h2>
-
-<h3 id="Περνώντας_undefined_σε_αντίθεση_με_άλλες_falsy_τιμες">Περνώντας <code>undefined</code> σε αντίθεση με άλλες falsy τιμες</h3>
-
-<p>Στην δεύτερη κλήση εδω, ακόμα και αν η δεύτερη παράμετρος είναι ρητά <code>undefined</code> (αλλά οχι <code>null</code> ή άλλες <em>falsy τιμές</em>) κατα την κλήση, η τιμή της παραμέτρου <code>num</code> είναι η προεπιλεγμένη.</p>
-
-<pre class="brush: js">function test(num = 1) {
- console.log(typeof num);
-}
-
-test(); // 'number' (η num παίρνει τιμή 1)
-test(undefined); // 'number' (η num επίσης παίρνει τιμή 1)
-
-// test with other falsy values:
-test(''); // 'string' (η num παίρνει τιμή '')
-test(null); // 'object' (η num παίρνει τιμή null)
-</pre>
-
-<h3 id="Εκτίμηση_κατα_την_κλήση">Εκτίμηση κατα την κλήση</h3>
-
-<p>Η προεπιλεγμένη παράμετρος εκτιμάται κατα την κλήση, οπότε αντίθετα με την Python για παραδειγμα, ενα νεο αντικείμενο δημιουργείται καθε φορά που καλείται η συνάρτηση.</p>
-
-<pre class="brush: js">function append(value, array = []) {
- array.push(value);
- return array;
-}
-
-append(1); //[1]
-append(2); //[2], όχι [1, 2]
-
-</pre>
-
-<p>Αυτό εφαρμόζεται ακομα και στις συναρτήσεις και τις μεταβλητές:</p>
-
-<pre class="brush: js">function callSomething(thing = something()) {
- return thing;
-}
-
-function something() {
- return 'sth';
-}
-
-callSomething(); //sth</pre>
-
-<h3 id="Οι_προεπιλεγμένες_παράμετροι_ειναι_διαθέσιμες_σε_επόμενες_προεπιλεγμένες_παραμέτρους">Οι προεπιλεγμένες παράμετροι ειναι διαθέσιμες σε επόμενες προεπιλεγμένες παραμέτρους</h3>
-
-<p>Οι παράμετροι που εχουν ήδη συναντηθεί είναι διαθέσιμες και στις επόμενες προεπιλεγμένες παραμέτρους:</p>
-
-<pre class="brush: js">function singularAutoPlural(singular, plural = singular + 's',
- rallyingCry = plural + ' ATTACK!!!') {
- return [singular, plural, rallyingCry];
-}
-
-//["Gecko","Geckos", "Geckos ATTACK!!!"]
-singularAutoPlural('Gecko');
-
-//["Fox","Foxes", "Foxes ATTACK!!!"]
-singularAutoPlural('Fox', 'Foxes');
-
-//["Deer", "Deer", "Deer ... change."]
-singularAutoPlural('Deer', 'Deer', 'Deer peaceably and respectfully \
- petition the government for positive change.')
-</pre>
-
-<p>Αυτή η λειτουργικότητα υπολογίζεται σταδιακά. Το επόμενο παράδειγμα επιδεικνύει το πως χειρίζονται άλλες ακραίες περιπτώσεις.</p>
-
-<pre class="brush: js">function go() {
- return ':P';
-}
-
-function withDefaults(a, b = 5, c = b, d = go(), e = this,
- f = arguments, g = this.value) {
- return [a, b, c, d, e, f, g];
-}
-
-function withoutDefaults(a, b, c, d, e, f, g) {
- switch (arguments.length) {
- case 0:
- a;
- case 1:
- b = 5;
- case 2:
- c = b;
- case 3:
- d = go();
- case 4:
- e = this;
- case 5:
- f = arguments;
- case 6:
- g = this.value;
- default:
- }
- return [a, b, c, d, e, f, g];
-}
-
-withDefaults.call({value: '=^_^='});
-// [undefined, 5, 5, ":P", {value:"=^_^="}, arguments, "=^_^="]
-
-
-withoutDefaults.call({value: '=^_^='});
-// [undefined, 5, 5, ":P", {value:"=^_^="}, arguments, "=^_^="]
-</pre>
-
-<h3 id="Συναρτήσεις_που_ορίζονται_μεσα_στο_σώμα_της_συνάρτησης">Συναρτήσεις που ορίζονται μεσα στο σώμα της συνάρτησης</h3>
-
-<p>Εισάχθηκε στο Gecko 33 {{geckoRelease(33)}}. Οι συναρτήσεις που ορίζονται στο σώμα της συνάρτησης δεν μπορούν να αναφέρονται στίς προεπιλεγμένες παραμέτρους και εμφανίζουν ενα {{jsxref("ReferenceError")}} (αυτή τη στιγμή {{jsxref("TypeError")}} στο SpiderMonkey, βλέπε {{bug(1022967)}}). Οι προεπιλεγμένες παράμετροι εκτελούνται παντα πρώτες και στην συνέχεια εκτελούνται οι δηλώσεις που βρίσκονται στο σώμα της συνάρτησης.</p>
-
-<pre class="brush: js">// Doesn't work! Throws ReferenceError.
-function f(a = go()) {
- function go() { return ':P'; }
-}
-</pre>
-
-<h3 id="Παράμετροι_χωρίς_προεπιλεγμένες_τιμες_μετα_τις_προεπιλεγμενες_παραμέτρους">Παράμετροι χωρίς προεπιλεγμένες τιμες μετα τις προεπιλεγμενες παραμέτρους</h3>
-
-<p>Πριν απο το Gecko 26 {{geckoRelease(26)}}, ο ακόλουθος κώδικας προκαλούσε ένα {{jsxref("SyntaxError")}}. Αυτό επιδιορθώθηκε στο {{bug(777060)}} και έχει την αναμενόμενη λειτουργία σε επόμενες εκδόσεις. Οι παράμετροι ορίζονται ακόμα απο τα αριστερά στα δεξιά, αντικαθιστώντας προεπιλεγμένες παραμέτρους ακόμα και αν υπάρχουν επόμενες παράμετροι χωρίς προεπιλεγμένες τιμές.</p>
-
-<pre class="brush: js">function f(x = 1, y) {
- return [x, y];
-}
-
-f(); // [1, undefined]
-f(2); // [2, undefined]
-</pre>
-
-<h3 id="Αποδόμηση_παραμέτρων_στον_ορισμό_προεπιλεγμένων_τιμών">Αποδόμηση παραμέτρων στον ορισμό προεπιλεγμένων τιμών</h3>
-
-<p>Στον ορισμό προεπιλεγμένων παραμέτρων μπορεί να χρησιμοποιηθεί <a href="/en-US/docs/Web/JavaScript/Reference/Operators/Destructuring_assignment">αποδομημένη ανάθεση</a>:</p>
-
-<pre class="brush: js">function f([x, y] = [1, 2], {z: z} = {z: 3}) {
- return x + y + z;
-}
-
-f(); // 6</pre>
-
-<h2 id="Προδιαγραφές">Προδιαγραφές</h2>
-
-<table class="standard-table">
- <tbody>
- <tr>
- <th scope="col">Προδιαγραφή</th>
- <th scope="col">Κατάσταση</th>
- <th scope="col">Σχόλιο</th>
- </tr>
- <tr>
- <td>{{SpecName('ES2015', '#sec-function-definitions', 'Function Definitions')}}</td>
- <td>{{Spec2('ES2015')}}</td>
- <td>Αρχικός ορισμός.</td>
- </tr>
- <tr>
- <td>{{SpecName('ESDraft', '#sec-function-definitions', 'Function Definitions')}}</td>
- <td>{{Spec2('ESDraft')}}</td>
- <td> </td>
- </tr>
- </tbody>
-</table>
-
-<h2 id="Συμβατότητα_περιηγητών">Συμβατότητα περιηγητών</h2>
-
-<div>
-<div class="hidden">Ο πίνακας συμβατότητας σε αυτή τη σελίδα παράγεται απο δομημένα δεδομένα. Αν θα θέλατε να συμβάλλετε στα δεδομένα, παρακαλώ κάντε checkout το <a href="https://github.com/mdn/browser-compat-data">https://github.com/mdn/browser-compat-data</a> και στείλτε μας ένα pull request.</div>
-
-<p>{{Compat("javascript.functions.default_parameters")}}</p>
-</div>
-
-<h2 id="Δείτε_επίσης">Δείτε επίσης</h2>
-
-<ul>
- <li><a class="external" href="http://wiki.ecmascript.org/doku.php?id=harmony:parameter_default_values" rel="external" title="http://wiki.ecmascript.org/doku.php?id=harmony:parameter_default_values">Αρχική πρόταση στο ecmascript.org</a></li>
-</ul>
diff --git a/files/el/web/javascript/reference/functions/index.html b/files/el/web/javascript/reference/functions/index.html
deleted file mode 100644
index a18367e482..0000000000
--- a/files/el/web/javascript/reference/functions/index.html
+++ /dev/null
@@ -1,596 +0,0 @@
----
-title: Functions
-slug: Web/JavaScript/Reference/Functions
-tags:
- - Constructor
- - Function
- - Functions
- - JavaScript
- - NeedsTranslation
- - Parameter
- - TopicStub
- - parameters
-translation_of: Web/JavaScript/Reference/Functions
----
-<div>{{jsSidebar("Functions")}}</div>
-
-<p>Generally speaking, a function is a "subprogram" that can be <em>called</em> by code external (or internal in the case of recursion) to the function. Like the program itself, a function is composed of a sequence of statements called the <em>function body</em>. Values can be <em>passed</em> to a function, and the function will <em>return</em> a value.</p>
-
-<p>In JavaScript, functions are first-class objects, because they can have properties and methods just like any other object. What distinguishes them from other objects is that functions can be called. In brief, they are <code><a href="/en-US/docs/JavaScript/Reference/Global_Objects/Function">Function</a></code> objects.</p>
-
-<p>For more examples and explanations, see also the <a href="/en-US/docs/Web/JavaScript/Guide/Functions">JavaScript guide about functions</a>.</p>
-
-<h2 id="Description">Description</h2>
-
-<p>Every function in JavaScript is a <code>Function</code> object. See {{jsxref("Function")}} for information on properties and methods of <code>Function</code> objects.</p>
-
-<p>To return a value other than the default, a function must have a <code><a href="/en-US/docs/Web/JavaScript/Reference/Statements/return">return</a></code> statement that specifies the value to return. A function without a return statement will return a default value. In the case of a <a href="/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/constructor">constructor</a> called with the <code><a href="/en-US/docs/Web/JavaScript/Reference/Operators/new">new</a></code> keyword, the default value is the value of its <code>this</code> parameter. For all other functions, the default return value is {{jsxref("undefined")}}.</p>
-
-<p>The parameters of a function call are the function's <em>arguments</em>. Arguments are passed to functions <em>by value</em>. If the function changes the value of an argument, this change is not reflected globally or in the calling function. However, object references are values, too, and they are special: if the function changes the referred object's properties, that change is visible outside the function, as shown in the following example:</p>
-
-<pre class="brush: js">/* Declare the function 'myFunc' */
-function myFunc(theObject) {
- theObject.brand = "Toyota";
-}
-
-/*
- * Declare variable 'mycar';
- * create and initialize a new Object;
- * assign reference to it to 'mycar'
- */
-var mycar = {
- brand: "Honda",
- model: "Accord",
- year: 1998
-};
-
-/* Logs 'Honda' */
-console.log(mycar.brand);
-
-/* Pass object reference to the function */
-myFunc(mycar);
-
-/*
- * Logs 'Toyota' as the value of the 'brand' property
- * of the object, as changed to by the function.
- */
-console.log(mycar.brand);
-</pre>
-
-<p>The <a href="/en-US/docs/Web/JavaScript/Reference/Operators/this"><code>this</code> keyword</a> does not refer to the currently executing function, so you must refer to <code>Function</code> objects by name, even within the function body.</p>
-
-<h2 id="Defining_functions">Defining functions</h2>
-
-<p>There are several ways to define functions:</p>
-
-<h3 id="The_function_declaration_(function_statement)">The function declaration (<code>function</code> statement)</h3>
-
-<p>There is a special syntax for declaring functions (see <a href="/en-US/docs/Web/JavaScript/Reference/Statements/function">function statement</a> for details):</p>
-
-<pre class="syntaxbox">function <em>name</em>([<em>param</em>[, <em>param</em>[, ... <em>param</em>]]]) {
- <em>statements</em>
-}
-</pre>
-
-<dl>
- <dt><code>name</code></dt>
- <dd>The function name.</dd>
-</dl>
-
-<dl>
- <dt><code>param</code></dt>
- <dd>The name of an argument to be passed to the function. A function can have up to 255 arguments.</dd>
-</dl>
-
-<dl>
- <dt><code>statements</code></dt>
- <dd>The statements comprising the body of the function.</dd>
-</dl>
-
-<h3 id="The_function_expression_(function_expression)">The function expression (<code>function</code> expression)</h3>
-
-<p>A function expression is similar to and has the same syntax as a function declaration (see <a href="/en-US/docs/Web/JavaScript/Reference/Operators/function">function expression</a> for details). A function expression may be a part of a larger expression. One can define "named" function expressions (where the name of the expression might be used in the call stack for example) or "anonymous" function expressions. Function expressions are not <em>hoisted</em> onto the beginning of the scope, therefore they cannot be used before they appear in the code.</p>
-
-<pre class="syntaxbox">function [<em>name</em>]([<em>param</em>[, <em>param</em>[, ... <em>param</em>]]]) {
- <em>statements</em>
-}
-</pre>
-
-<dl>
- <dt><code>name</code></dt>
- <dd>The function name. Can be omitted, in which case the function becomes known as an anonymous function.</dd>
-</dl>
-
-<dl>
- <dt><code>param</code></dt>
- <dd>The name of an argument to be passed to the function. A function can have up to 255 arguments.</dd>
- <dt><code>statements</code></dt>
- <dd>The statements comprising the body of the function.</dd>
-</dl>
-
-<p>Here is an example of an <strong>anonymous</strong> function expression (the <code>name</code> is not used):</p>
-
-<pre class="brush: js">var myFunction = function() {
- statements
-}</pre>
-
-<p>It is also possible to provide a name inside the definition in order to create a <strong>named</strong> function expression:</p>
-
-<pre class="brush: js">var myFunction = function namedFunction(){
-  statements
-}
-</pre>
-
-<p>One of the benefits of creating a named function expression is that in case we encountered an error, the stack trace will contain the name of the function, making it easier to find the origin of the error.</p>
-
-<p>As we can see, both examples do not start with the <code>function</code> keyword. Statements involving functions which do not start with <code>function</code> are function expressions.</p>
-
-<p>When functions are used only once, a common pattern is an <strong>IIFE (<em>Immediately Invokable Function Expression</em>)</strong>.</p>
-
-<pre class="brush: js">(function() {
- statements
-})();</pre>
-
-<p>IIFE are function expressions that are invoked as soon as the function is declared.</p>
-
-<h3 id="The_generator_function_declaration_(function*_statement)">The generator function declaration (<code>function*</code> statement)</h3>
-
-<p>There is a special syntax for generator function declarations (see {{jsxref('Statements/function*', 'function* statement')}} for details):</p>
-
-<pre class="syntaxbox">function* <em>name</em>([<em>param</em>[, <em>param</em>[, ... <em>param</em>]]]) {
- <em>statements</em>
-}
-</pre>
-
-<dl>
- <dt><code>name</code></dt>
- <dd>The function name.</dd>
-</dl>
-
-<dl>
- <dt><code>param</code></dt>
- <dd>The name of an argument to be passed to the function. A function can have up to 255 arguments.</dd>
-</dl>
-
-<dl>
- <dt><code>statements</code></dt>
- <dd>The statements comprising the body of the function.</dd>
-</dl>
-
-<h3 id="The_generator_function_expression_(function*_expression)">The generator function expression (<code>function*</code> expression)</h3>
-
-<p>A generator function expression is similar to and has the same syntax as a generator function declaration (see {{jsxref('Operators/function*', 'function* expression')}} for details):</p>
-
-<pre class="syntaxbox">function* [<em>name</em>]([<em>param</em>[, <em>param</em>[, ... <em>param</em>]]]) {
- <em>statements</em>
-}
-</pre>
-
-<dl>
- <dt><code>name</code></dt>
- <dd>The function name. Can be omitted, in which case the function becomes known as an anonymous function.</dd>
-</dl>
-
-<dl>
- <dt><code>param</code></dt>
- <dd>The name of an argument to be passed to the function. A function can have up to 255 arguments.</dd>
- <dt><code>statements</code></dt>
- <dd>The statements comprising the body of the function.</dd>
-</dl>
-
-<h3 id="The_arrow_function_expression_(>)">The arrow function expression (=&gt;)</h3>
-
-<p>An arrow function expression has a shorter syntax and lexically binds its <code>this</code> value (see <a href="/en-US/docs/Web/JavaScript/Reference/Functions/Arrow_functions">arrow functions</a> for details):</p>
-
-<pre class="syntaxbox">([param[, param]]) =&gt; {
- statements
-}
-
-param =&gt; expression
-</pre>
-
-<dl>
- <dt><code>param</code></dt>
- <dd>The name of an argument. Zero arguments need to be indicated with <code>()</code>.  For only one argument, the parentheses are not required. (like <code>foo =&gt; 1</code>)</dd>
- <dt><code>statements or expression</code></dt>
- <dd>Multiple statements need to be enclosed in brackets. A single expression requires no brackets. The expression is also the implicit return value of the function.</dd>
-</dl>
-
-<h3 id="The_Function_constructor">The <code>Function</code> constructor</h3>
-
-<div class="note">
-<p><strong>Note:</strong> Using the <code>Function</code> constructor to create functions is not recommended since it needs the function body as a string which may prevent some JS engine optimizations and can also cause other problems.</p>
-</div>
-
-<p>As all other objects, {{jsxref("Function")}} objects can be created using the <code>new</code> operator:</p>
-
-<pre class="syntaxbox">new Function (<em>arg1</em>, <em>arg2</em>, ... <em>argN</em>, <em>functionBody</em>)
-</pre>
-
-<dl>
- <dt><code>arg1, arg2, ... arg<em>N</em></code></dt>
- <dd>Zero or more names to be used by the function as formal parameters. Each must be a proper JavaScript identifier.</dd>
-</dl>
-
-<dl>
- <dt><code>functionBody</code></dt>
- <dd>A string containing the JavaScript statements comprising the function body.</dd>
-</dl>
-
-<p>Invoking the <code>Function</code> constructor as a function (without using the <code>new</code> operator) has the same effect as invoking it as a constructor.</p>
-
-<h3 id="The_GeneratorFunction_constructor">The <code>GeneratorFunction</code> constructor</h3>
-
-<div class="note">
-<p><strong>Note:</strong> <code>GeneratorFunction</code> is not a global object, but could be obtained from generator function instance (see {{jsxref("GeneratorFunction")}} for more detail).</p>
-</div>
-
-<div class="note">
-<p><strong>Note:</strong> Using the <code>GeneratorFunction</code> constructor to create functions is not recommended since it needs the function body as a string which may prevent some JS engine optimizations and can also cause other problems.</p>
-</div>
-
-<p>As all other objects, {{jsxref("GeneratorFunction")}} objects can be created using the <code>new</code> operator:</p>
-
-<pre class="syntaxbox">new GeneratorFunction (<em>arg1</em>, <em>arg2</em>, ... <em>argN</em>, <em>functionBody</em>)
-</pre>
-
-<dl>
- <dt><code>arg1, arg2, ... arg<em>N</em></code></dt>
- <dd>Zero or more names to be used by the function as formal argument names. Each must be a string that conforms to the rules for a valid JavaScript identifier or a list of such strings separated with a comma; for example "<code>x</code>", "<code>theValue</code>", or "<code>a,b</code>".</dd>
-</dl>
-
-<dl>
- <dt><code>functionBody</code></dt>
- <dd>A string containing the JavaScript statements comprising the function definition.</dd>
-</dl>
-
-<p>Invoking the <code>Function</code> constructor as a function (without using the <code>new</code> operator) has the same effect as invoking it as a constructor.</p>
-
-<h2 id="Function_parameters">Function parameters</h2>
-
-<h3 id="Default_parameters">Default parameters</h3>
-
-<p>Default function parameters allow formal parameters to be initialized with default values if no value or <code>undefined</code> is passed. For more details, see<a href="/en-US/docs/Web/JavaScript/Reference/Functions/Default_parameters"> default parameters</a>.</p>
-
-<h3 id="Rest_parameters">Rest parameters</h3>
-
-<p>The rest parameter syntax allows representing an indefinite number of arguments as an array. For more details, see <a href="/en-US/docs/Web/JavaScript/Reference/Functions/rest_parameters">rest parameters</a>.</p>
-
-<h2 id="The_arguments_object">The <code>arguments</code> object</h2>
-
-<p>You can refer to a function's arguments within the function by using the <code>arguments</code> object. See <a href="/en-US/docs/Web/JavaScript/Reference/Functions/arguments">arguments</a>.</p>
-
-<ul>
- <li><code><a href="/en-US/docs/JavaScript/Reference/Functions_and_function_scope/arguments">arguments</a></code>: An array-like object containing the arguments passed to the currently executing function.</li>
- <li><code><a href="/en-US/docs/JavaScript/Reference/Functions_and_function_scope/arguments/callee">arguments.callee</a></code> {{Deprecated_inline}}: The currently executing function.</li>
- <li><code><a href="/en-US/docs/JavaScript/Reference/Functions_and_function_scope/arguments/caller">arguments.caller</a></code> {{Obsolete_inline}} : The function that invoked the currently executing function.</li>
- <li><code><a href="/en-US/docs/JavaScript/Reference/Functions_and_function_scope/arguments/length">arguments.length</a></code>: The number of arguments passed to the function.</li>
-</ul>
-
-<h2 id="Defining_method_functions">Defining method functions</h2>
-
-<h3 id="Getter_and_setter_functions">Getter and setter functions</h3>
-
-<p>You can define getters (accessor methods) and setters (mutator methods) on any standard built-in object or user-defined object that supports the addition of new properties. The syntax for defining getters and setters uses the object literal syntax.</p>
-
-<dl>
- <dt><a href="/en-US/docs/Web/JavaScript/Reference/Functions/get">get</a></dt>
- <dd>
- <p>Binds an object property to a function that will be called when that property is looked up.</p>
- </dd>
- <dt><a href="/en-US/docs/Web/JavaScript/Reference/Functions/set">set</a></dt>
- <dd>Binds an object property to a function to be called when there is an attempt to set that property.</dd>
-</dl>
-
-<h3 id="Method_definition_syntax">Method definition syntax</h3>
-
-<p>Starting with ECMAScript 2015, you are able to define own methods in a shorter syntax, similar to the getters and setters. See <a href="/en-US/docs/Web/JavaScript/Reference/Functions/Method_definitions">method definitions</a> for more information.</p>
-
-<pre class="brush: js">var obj = {
- foo() {},
-  bar() {}
-};</pre>
-
-<h2 id="Constructor_vs._declaration_vs._expression">Constructor vs. declaration vs. expression</h2>
-
-<p>Compare the following:</p>
-
-<p>A function defined with the <code>Function</code> <em>constructor</em> assigned to the variable <code>multiply:</code></p>
-
-<pre class="brush: js">var multiply = new Function('x', 'y', 'return x * y');</pre>
-
-<p>A <em>function declaration</em> of a function named <code>multiply</code>:</p>
-
-<pre class="brush: js">function multiply(x, y) {
-  return x * y;
-} // there is no semicolon here
-</pre>
-
-<p>A <em>function expression</em> of an anonymous function assigned to the variable <code>multiply:</code></p>
-
-<pre class="brush: js">var multiply = function(x, y) {
- return x * y;
-};
-</pre>
-
-<p>A <em>function expression</em> of a function named <code>func_name</code> assigned to the variable <code>multiply:</code></p>
-
-<pre class="brush: js">var multiply = function func_name(x, y) {
- return x * y;
-};
-</pre>
-
-<h3 id="Differences">Differences</h3>
-
-<p>All do approximately the same thing, with a few subtle differences:</p>
-
-<p>There is a distinction between the function name and the variable the function is assigned to. The function name cannot be changed, while the variable the function is assigned to can be reassigned. The function name can be used only within the function's body. Attempting to use it outside the function's body results in an error (or <code>undefined</code> if the function name was previously declared via a <code>var</code> statement). For example:</p>
-
-<pre class="brush: js">var y = function x() {};
-alert(x); // throws an error
-</pre>
-
-<p>The function name also appears when the function is serialized via <a href="/en-US/docs/Web/JavaScript/Reference/Global_Objects/Function/toString"><code>Function</code>'s toString method</a>.</p>
-
-<p>On the other hand, the variable the function is assigned to is limited only by its scope, which is guaranteed to include the scope in which the function is declared.</p>
-
-<p>As the 4th example shows, the function name can be different from the variable the function is assigned to. They have no relation to each other. A function declaration also creates a variable with the same name as the function name. Thus, unlike those defined by function expressions, functions defined by function declarations can be accessed by their name in the scope they were defined in:</p>
-
-<p>A function defined by '<code>new Function'</code> does not have a function name. However, in the <a href="/en-US/docs/Mozilla/Projects/SpiderMonkey">SpiderMonkey</a> JavaScript engine, the serialized form of the function shows as if it has the name "anonymous". For example, <code>alert(new Function())</code> outputs:</p>
-
-<pre class="brush: js">function anonymous() {
-}
-</pre>
-
-<p>Since the function actually does not have a name, <code>anonymous</code> is not a variable that can be accessed within the function. For example, the following would result in an error:</p>
-
-<pre class="brush: js">var foo = new Function("alert(anonymous);");
-foo();
-</pre>
-
-<p>Unlike functions defined by function expressions or by the <code>Function</code> constructor, a function defined by a function declaration can be used before the function declaration itself. For example:</p>
-
-<pre class="brush: js">foo(); // alerts FOO!
-function foo() {
- alert('FOO!');
-}
-</pre>
-
-<p>A function defined by a function expression or by a function declaration inherits the current scope. That is, the function forms a closure. On the other hand, a function defined by a <code>Function</code> constructor does not inherit any scope other than the global scope (which all functions inherit).</p>
-
-<pre class="brush: js">/*
- * Declare and initialize a variable 'p' (global)
- * and a function 'myFunc' (to change the scope) inside which
- * declare a varible with same name 'p' (current) and
- * define three functions using three different ways:-
- * 1. function declaration
- * 2. function expression
- * 3. function constructor
- * each of which will log 'p'
- */
-var p = 5;
-function myFunc() {
- var p = 9;
-
- function decl() {
- console.log(p);
- }
- var expr = function() {
- console.log(p);
- };
- var cons = new Function('\tconsole.log(p);');
-
- decl();
- expr();
- cons();
-}
-myFunc();
-
-/*
- * Logs:-
- * 9 - for 'decl' by function declaration (current scope)
- * 9 - for 'expr' by function expression (current scope)
- * 5 - for 'cons' by Function constructor (global scope)
- */
-</pre>
-
-<p>Functions defined by function expressions and function declarations are parsed only once, while those defined by the <code>Function</code> constructor are not. That is, the function body string passed to the <code>Function</code> constructor must be parsed each and every time the constructor is called. Although a function expression creates a closure every time, the function body is not reparsed, so function expressions are still faster than "<code>new Function(...)</code>". Therefore the <code>Function</code> constructor should generally be avoided whenever possible.</p>
-
-<p>It should be noted, however, that function expressions and function declarations nested within the function generated by parsing a <code>Function constructor</code> 's string aren't parsed repeatedly. For example:</p>
-
-<pre class="brush: js">var foo = (new Function("var bar = \'FOO!\';\nreturn(function() {\n\talert(bar);\n});"))();
-foo(); // The segment "function() {\n\talert(bar);\n}" of the function body string is not re-parsed.</pre>
-
-<p>A function declaration is very easily (and often unintentionally) turned into a function expression. A function declaration ceases to be one when it either:</p>
-
-<ul>
- <li>becomes part of an expression</li>
- <li>is no longer a "source element" of a function or the script itself. A "source element" is a non-nested statement in the script or a function body:</li>
-</ul>
-
-<pre class="brush: js">var x = 0; // source element
-if (x === 0) { // source element
- x = 10; // not a source element
- function boo() {} // not a source element
-}
-function foo() { // source element
- var y = 20; // source element
- function bar() {} // source element
- while (y === 10) { // source element
- function blah() {} // not a source element
- y++; // not a source element
- }
-}
-</pre>
-
-<h3 id="Examples">Examples</h3>
-
-<pre class="brush: js">// function declaration
-function foo() {}
-
-// function expression
-(function bar() {})
-
-// function expression
-x = function hello() {}
-
-
-if (x) {
- // function expression
- function world() {}
-}
-
-
-// function declaration
-function a() {
- // function declaration
- function b() {}
- if (0) {
- // function expression
- function c() {}
- }
-}
-</pre>
-
-<h2 id="Block-level_functions">Block-level functions</h2>
-
-<p>In <a href="/en-US/docs/Web/JavaScript/Reference/Strict_mode">strict mode</a>, starting with ES2015, functions inside blocks are now scoped to that block. Prior to ES2015, block-level functions were forbidden in strict mode.</p>
-
-<pre class="brush: js">'use strict';
-
-function f() {
- return 1;
-}
-
-{
- function f() {
- return 2;
- }
-}
-
-f() === 1; // true
-
-// f() === 2 in non-strict mode
-</pre>
-
-<h3 id="Block-level_functions_in_non-strict_code">Block-level functions in non-strict code</h3>
-
-<p>In a word: Don't.</p>
-
-<p>In non-strict code, function declarations inside blocks behave strangely. For example:</p>
-
-<pre class="brush: js">if (shouldDefineZero) {
- function zero() { // DANGER: compatibility risk
- console.log("This is zero.");
- }
-}
-</pre>
-
-<p>ES2015 says that if <code>shouldDefineZero</code> is false, then <code>zero</code> should never be defined, since the block never executes. However, it's a new part of the standard. Historically, this was left unspecified, and some browsers would define <code>zero</code> whether the block executed or not.</p>
-
-<p>In <a href="/en-US/docs/Web/JavaScript/Reference/Strict_mode">strict mode</a>, all browsers that support ES2015 handle this the same way: <code>zero</code> is defined only if <code>shouldDefineZero</code> is true, and only in the scope of the <code>if</code>-block.</p>
-
-<p>A safer way to define functions conditionally is to assign a function expression to a variable:</p>
-
-<pre class="brush: js">var zero;
-if (shouldDefineZero) {
- zero = function() {
- console.log("This is zero.");
- };
-}
-</pre>
-
-<h2 id="Examples_2">Examples</h2>
-
-<h3 id="Returning_a_formatted_number">Returning a formatted number</h3>
-
-<p>The following function returns a string containing the formatted representation of a number padded with leading zeros.</p>
-
-<pre class="brush: js">// This function returns a string padded with leading zeros
-function padZeros(num, totalLen) {
- var numStr = num.toString(); // Initialize return value as string
- var numZeros = totalLen - numStr.length; // Calculate no. of zeros
- for (var i = 1; i &lt;= numZeros; i++) {
- numStr = "0" + numStr;
- }
- return numStr;
-}
-</pre>
-
-<p>The following statements call the padZeros function.</p>
-
-<pre class="brush: js">var result;
-result = padZeros(42,4); // returns "0042"
-result = padZeros(42,2); // returns "42"
-result = padZeros(5,4); // returns "0005"
-</pre>
-
-<h3 id="Determining_whether_a_function_exists">Determining whether a function exists</h3>
-
-<p>You can determine whether a function exists by using the <code>typeof</code> operator. In the following example, a test is performed to determine if the <code>window</code> object has a property called <code>noFunc</code> that is a function. If so, it is used; otherwise, some other action is taken.</p>
-
-<pre class="brush: js"> if ('function' === typeof window.noFunc) {
- // use noFunc()
- } else {
- // do something else
- }
-</pre>
-
-<p>Note that in the <code>if</code> test, a reference to <code>noFunc</code> is used—there are no brackets "()" after the function name so the actual function is not called.</p>
-
-<h2 id="Specifications">Specifications</h2>
-
-<table class="standard-table">
- <tbody>
- <tr>
- <th scope="col">Specification</th>
- <th scope="col">Status</th>
- <th scope="col">Comment</th>
- </tr>
- <tr>
- <td>{{SpecName('ES1')}}</td>
- <td>{{Spec2('ES1')}}</td>
- <td>Initial definition. Implemented in JavaScript 1.0</td>
- </tr>
- <tr>
- <td>{{SpecName('ES5.1', '#sec-13', 'Function Definition')}}</td>
- <td>{{Spec2('ES5.1')}}</td>
- <td> </td>
- </tr>
- <tr>
- <td>{{SpecName('ES6', '#sec-function-definitions', 'Function definitions')}}</td>
- <td>{{Spec2('ES6')}}</td>
- <td>New: Arrow functions, Generator functions, default parameters, rest parameters.</td>
- </tr>
- <tr>
- <td>{{SpecName('ESDraft', '#sec-function-definitions', 'Function definitions')}}</td>
- <td>{{Spec2('ESDraft')}}</td>
- <td> </td>
- </tr>
- </tbody>
-</table>
-
-<h2 id="Browser_compatibility">Browser compatibility</h2>
-
-
-
-<p>{{Compat("javascript.functions")}}</p>
-
-<h2 id="See_also">See also</h2>
-
-<ul>
- <li>{{jsxref("Statements/function", "function statement")}}</li>
- <li>{{jsxref("Operators/function", "function expression")}}</li>
- <li>{{jsxref("Statements/function*", "function* statement")}}</li>
- <li>{{jsxref("Operators/function*", "function* expression")}}</li>
- <li>{{jsxref("Function")}}</li>
- <li>{{jsxref("GeneratorFunction")}}</li>
- <li>{{jsxref("Functions/Arrow_functions", "Arrow functions")}}</li>
- <li>{{jsxref("Functions/Default_parameters", "Default parameters")}}</li>
- <li>{{jsxref("Functions/rest_parameters", "Rest parameters")}}</li>
- <li>{{jsxref("Functions/arguments", "Arguments object")}}</li>
- <li>{{jsxref("Functions/get", "getter")}}</li>
- <li>{{jsxref("Functions/set", "setter")}}</li>
- <li>{{jsxref("Functions/Method_definitions", "Method definitions")}}</li>
- <li><a href="/en-US/docs/Web/JavaScript/Reference/Functions_and_function_scope">Functions and function scope</a></li>
-</ul>
diff --git a/files/el/web/javascript/reference/global_objects/index.html b/files/el/web/javascript/reference/global_objects/index.html
deleted file mode 100644
index f59e3e8592..0000000000
--- a/files/el/web/javascript/reference/global_objects/index.html
+++ /dev/null
@@ -1,193 +0,0 @@
----
-title: Standard built-in objects
-slug: Web/JavaScript/Reference/Global_Objects
-tags:
- - JavaScript
- - NeedsTranslation
- - Reference
- - TopicStub
-translation_of: Web/JavaScript/Reference/Global_Objects
----
-<div>{{jsSidebar("Objects")}}</div>
-
-<p>This chapter documents all of JavaScript's standard, built-in objects, including their methods and properties.</p>
-
-<p>The term "global objects" (or standard built-in objects) here is not to be confused with the <strong>global object</strong>. Here, global objects refer to <strong>objects in the global scope</strong>. The <strong>global object</strong> itself can be accessed using the {{jsxref("Operators/this", "this")}} operator in the global scope (but only if ECMAScript 5 strict mode is not used; in that case it returns {{jsxref("undefined")}}). In fact, the global scope <strong>consists of</strong> the properties of the global object, including inherited properties, if any.</p>
-
-<p>Other objects in the global scope are either <a href="/en-US/docs/Web/JavaScript/Guide/Working_with_Objects#Creating_new_objects">created by the user script</a> or provided by the host application. The host objects available in browser contexts are documented in the <a href="/en-US/docs/Web/API/Reference">API reference</a>. For more information about the distinction between the <a href="/en-US/docs/DOM/DOM_Reference">DOM</a> and core <a href="/en-US/docs/Web/JavaScript">JavaScript</a>, see <a href="/en-US/docs/Web/JavaScript/JavaScript_technologies_overview">JavaScript technologies overview</a>.</p>
-
-<h2 id="Standard_objects_by_category">Standard objects by category</h2>
-
-<h3 id="Value_properties">Value properties</h3>
-
-<p>These global properties return a simple value; they have no properties or methods.</p>
-
-<ul>
- <li>{{jsxref("Infinity")}}</li>
- <li>{{jsxref("NaN")}}</li>
- <li>{{jsxref("undefined")}}</li>
- <li>{{jsxref("null")}} literal</li>
-</ul>
-
-<h3 id="Function_properties">Function properties</h3>
-
-<p>These global functions—functions which are called globally rather than on an object—directly return their results to the caller.</p>
-
-<ul>
- <li>{{jsxref("Global_Objects/eval", "eval()")}}</li>
- <li>{{jsxref("Global_Objects/uneval", "uneval()")}} {{non-standard_inline}}</li>
- <li>{{jsxref("Global_Objects/isFinite", "isFinite()")}}</li>
- <li>{{jsxref("Global_Objects/isNaN", "isNaN()")}}</li>
- <li>{{jsxref("Global_Objects/parseFloat", "parseFloat()")}}</li>
- <li>{{jsxref("Global_Objects/parseInt", "parseInt()")}}</li>
- <li>{{jsxref("Global_Objects/decodeURI", "decodeURI()")}}</li>
- <li>{{jsxref("Global_Objects/decodeURIComponent", "decodeURIComponent()")}}</li>
- <li>{{jsxref("Global_Objects/encodeURI", "encodeURI()")}}</li>
- <li>{{jsxref("Global_Objects/encodeURIComponent", "encodeURIComponent()")}}</li>
- <li>{{jsxref("Global_Objects/escape", "escape()")}} {{deprecated_inline}}</li>
- <li>{{jsxref("Global_Objects/unescape", "unescape()")}} {{deprecated_inline}}</li>
-</ul>
-
-<h3 id="Fundamental_objects">Fundamental objects</h3>
-
-<p>These are the fundamental, basic objects upon which all other objects are based. This includes objects that represent general objects, functions, and errors.</p>
-
-<ul>
- <li>{{jsxref("Object")}}</li>
- <li>{{jsxref("Function")}}</li>
- <li>{{jsxref("Boolean")}}</li>
- <li>{{jsxref("Symbol")}}</li>
- <li>{{jsxref("Error")}}</li>
- <li>{{jsxref("EvalError")}}</li>
- <li>{{jsxref("InternalError")}}</li>
- <li>{{jsxref("RangeError")}}</li>
- <li>{{jsxref("ReferenceError")}}</li>
- <li>{{jsxref("SyntaxError")}}</li>
- <li>{{jsxref("TypeError")}}</li>
- <li>{{jsxref("URIError")}}</li>
-</ul>
-
-<h3 id="Numbers_and_dates">Numbers and dates</h3>
-
-<p>These are the base objects representing numbers, dates, and mathematical calculations.</p>
-
-<ul>
- <li>{{jsxref("Number")}}</li>
- <li>{{jsxref("Math")}}</li>
- <li>{{jsxref("Date")}}</li>
-</ul>
-
-<h3 id="Text_processing">Text processing</h3>
-
-<p>These objects represent strings and support manipulating them.</p>
-
-<ul>
- <li>{{jsxref("String")}}</li>
- <li>{{jsxref("RegExp")}}</li>
-</ul>
-
-<h3 id="Indexed_collections">Indexed collections</h3>
-
-<p>These objects represent collections of data which are ordered by an index value. This includes (typed) arrays and array-like constructs.</p>
-
-<ul>
- <li>{{jsxref("Array")}}</li>
- <li>{{jsxref("Int8Array")}}</li>
- <li>{{jsxref("Uint8Array")}}</li>
- <li>{{jsxref("Uint8ClampedArray")}}</li>
- <li>{{jsxref("Int16Array")}}</li>
- <li>{{jsxref("Uint16Array")}}</li>
- <li>{{jsxref("Int32Array")}}</li>
- <li>{{jsxref("Uint32Array")}}</li>
- <li>{{jsxref("Float32Array")}}</li>
- <li>{{jsxref("Float64Array")}}</li>
-</ul>
-
-<h3 id="Keyed_collections">Keyed collections</h3>
-
-<p>These objects represent collections which use keys; these contain elements which are iterable in the order of insertion.</p>
-
-<ul>
- <li>{{jsxref("Map")}}</li>
- <li>{{jsxref("Set")}}</li>
- <li>{{jsxref("WeakMap")}}</li>
- <li>{{jsxref("WeakSet")}}</li>
-</ul>
-
-<h3 id="Vector_collections">Vector collections</h3>
-
-<p>{{Glossary("SIMD")}} vector data types are objects where data is arranged into lanes.</p>
-
-<ul>
- <li>{{jsxref("SIMD")}} {{experimental_inline}}</li>
- <li>{{jsxref("Float32x4", "SIMD.Float32x4")}} {{experimental_inline}}</li>
- <li>{{jsxref("Float64x2", "SIMD.Float64x2")}} {{experimental_inline}}</li>
- <li>{{jsxref("Int8x16", "SIMD.Int8x16")}} {{experimental_inline}}</li>
- <li>{{jsxref("Int16x8", "SIMD.Int16x8")}} {{experimental_inline}}</li>
- <li>{{jsxref("Int32x4", "SIMD.Int32x4")}} {{experimental_inline}}</li>
- <li>{{jsxref("Uint8x16", "SIMD.Uint8x16")}} {{experimental_inline}}</li>
- <li>{{jsxref("Uint16x8", "SIMD.Uint16x8")}} {{experimental_inline}}</li>
- <li>{{jsxref("Uint32x4", "SIMD.Uint32x4")}} {{experimental_inline}}</li>
- <li>{{jsxref("Bool8x16", "SIMD.Bool8x16")}} {{experimental_inline}}</li>
- <li>{{jsxref("Bool16x8", "SIMD.Bool16x8")}} {{experimental_inline}}</li>
- <li>{{jsxref("Bool32x4", "SIMD.Bool32x4")}} {{experimental_inline}}</li>
- <li>{{jsxref("Bool64x2", "SIMD.Bool64x2")}} {{experimental_inline}}</li>
-</ul>
-
-<h3 id="Structured_data">Structured data</h3>
-
-<p>These objects represent and interact with structured data buffers and data coded using JavaScript Object Notation (JSON).</p>
-
-<ul>
- <li>{{jsxref("ArrayBuffer")}}</li>
- <li>{{jsxref("SharedArrayBuffer")}} {{experimental_inline}}</li>
- <li>{{jsxref("Atomics")}} {{experimental_inline}}</li>
- <li>{{jsxref("DataView")}}</li>
- <li>{{jsxref("JSON")}}</li>
-</ul>
-
-<h3 id="Control_abstraction_objects">Control abstraction objects</h3>
-
-<ul>
- <li>{{jsxref("Promise")}}</li>
- <li>{{jsxref("Generator")}}</li>
- <li>{{jsxref("GeneratorFunction")}}</li>
- <li>{{experimental_inline}} {{jsxref("AsyncFunction")}}</li>
-</ul>
-
-<h3 id="Reflection">Reflection</h3>
-
-<ul>
- <li>{{jsxref("Reflect")}}</li>
- <li>{{jsxref("Proxy")}}</li>
-</ul>
-
-<h3 id="Internationalization">Internationalization</h3>
-
-<p>Additions to the ECMAScript core for language-sensitive functionalities.</p>
-
-<ul>
- <li>{{jsxref("Intl")}}</li>
- <li>{{jsxref("Global_Objects/Collator", "Intl.Collator")}}</li>
- <li>{{jsxref("Global_Objects/DateTimeFormat", "Intl.DateTimeFormat")}}</li>
- <li>{{jsxref("Global_Objects/NumberFormat", "Intl.NumberFormat")}}</li>
-</ul>
-
-<h3 id="WebAssembly">WebAssembly</h3>
-
-<ul>
- <li>{{jsxref("WebAssembly")}}</li>
- <li>{{jsxref("WebAssembly.Module")}}</li>
- <li>{{jsxref("WebAssembly.Instance")}}</li>
- <li>{{jsxref("WebAssembly.Memory")}}</li>
- <li>{{jsxref("WebAssembly.Table")}}</li>
- <li>{{jsxref("WebAssembly.CompileError")}}</li>
- <li>{{jsxref("WebAssembly.LinkError")}}</li>
- <li>{{jsxref("WebAssembly.RuntimeError")}}</li>
-</ul>
-
-<h3 id="Other">Other</h3>
-
-<ul>
- <li><code><a href="/en-US/docs/Web/JavaScript/Reference/Functions/arguments">arguments</a></code></li>
-</ul>
diff --git a/files/el/web/javascript/reference/index.html b/files/el/web/javascript/reference/index.html
deleted file mode 100644
index 4205970b93..0000000000
--- a/files/el/web/javascript/reference/index.html
+++ /dev/null
@@ -1,51 +0,0 @@
----
-title: JavaScript reference
-slug: Web/JavaScript/Reference
-tags:
- - JavaScript
- - NeedsTranslation
- - TopicStub
- - 'l10n:priority'
-translation_of: Web/JavaScript/Reference
----
-<div>{{JsSidebar}}</div>
-
-<p>This part of the JavaScript section on MDN serves as a repository of facts about the JavaScript language. Read more <a href="/en-US/docs/Web/JavaScript/Reference/About">about this reference</a>.</p>
-
-<h2 id="Global_Objects">Global Objects</h2>
-
-<p>This chapter documents all the <a href="/en-US/docs/Web/JavaScript/Reference/Global_Objects">JavaScript standard built-in objects</a>, along with their methods and properties.</p>
-
-<div>{{page('/en-US/docs/Web/JavaScript/Reference/Global_Objects', 'Standard_objects_by_category')}}</div>
-
-<h2 id="Statements">Statements</h2>
-
-<p>This chapter documents all the <a href="/en-US/docs/Web/JavaScript/Reference/Statements">JavaScript statements and declarations</a>.</p>
-
-<div>{{page('/en-US/docs/Web/JavaScript/Reference/Statements', 'Statements_and_declarations_by_category')}}</div>
-
-<h2 id="Expressions_and_operators">Expressions and operators</h2>
-
-<p>This chapter documents all the <a href="/en-US/docs/Web/JavaScript/Reference/Operators">JavaScript expressions and operators</a>.</p>
-
-<div>{{page('/en-US/docs/Web/JavaScript/Reference/Operators', 'Expressions_and_operators_by_category')}}</div>
-
-<h2 id="Functions">Functions</h2>
-
-<p>This chapter documents how to work with <a href="/en-US/docs/Web/JavaScript/Reference/Functions">JavaScript functions</a> to develop your applications.</p>
-
-<ul>
- <li><a href="/en-US/docs/Web/JavaScript/Reference/Functions/arguments"><code>arguments</code></a></li>
- <li><a href="/en-US/docs/Web/JavaScript/Reference/Functions/Arrow_functions">Arrow functions</a></li>
- <li><a href="/en-US/docs/Web/JavaScript/Reference/Functions/Default_parameters">Default parameters</a></li>
- <li><a href="/en-US/docs/Web/JavaScript/Reference/Functions/rest_parameters">Rest parameters</a></li>
-</ul>
-
-<h2 id="Additional_reference_pages">Additional reference pages</h2>
-
-<ul>
- <li><a href="/en-US/docs/Web/JavaScript/Reference/Lexical_grammar">Lexical grammar</a></li>
- <li><a href="/en-US/docs/Web/JavaScript/Data_structures">Data types and data structures</a></li>
- <li><a href="/en-US/docs/Web/JavaScript/Reference/Strict_mode">Strict mode</a></li>
- <li><a href="/en-US/docs/Web/JavaScript/Reference/Deprecated_and_obsolete_features">Deprecated features</a></li>
-</ul>
diff --git a/files/el/web/javascript/reference/operators/comma_operator/index.html b/files/el/web/javascript/reference/operators/comma_operator/index.html
deleted file mode 100644
index 97e396cc1e..0000000000
--- a/files/el/web/javascript/reference/operators/comma_operator/index.html
+++ /dev/null
@@ -1,154 +0,0 @@
----
-title: Τελεστής Κόμμα
-slug: Web/JavaScript/Reference/Operators/Comma_Operator
-tags:
- - JavaScript
- - Κόμμα
- - Τελεστής
- - Τελεστής Κόμμα
-translation_of: Web/JavaScript/Reference/Operators/Comma_Operator
----
-<div>{{jsSidebar("Τελεστές")}}</div>
-
-<p>Ο<strong> τελεστής κόμμα</strong> αποτιμά κάθε τελεστέο του (από τα αριστερά προς τα δεξιά) και επιστρέφει τη τιμή του τελευταίου τελεστέου.</p>
-
-<h2 id="Σύνταξη">Σύνταξη</h2>
-
-<pre class="syntaxbox"><em>έκφραση1</em>, <em>έκφραση2, έκφραση3...</em></pre>
-
-<h2 id="Παράμετροι">Παράμετροι</h2>
-
-<dl>
- <dt><code>έκφραση1</code>, <code>έκφραση2</code>, <code>έκφραση3...</code></dt>
- <dd>Οποιαδήποτε έκφραση.</dd>
-</dl>
-
-<h2 id="Περιγραφή">Περιγραφή</h2>
-
-<p>Μπορείτε να χρησιμοποιήσετε τον τελεστή κόμμα όποτε θέλετε να συμπεριλάβετε πολλαπλές εκφράσεις σε σημείο που απαιτείται μία έκφραση. Η πιο κοινή χρήση αυτού του τελεστή είναι η προμήθεια πολλαπλών παραμέτρων σε έναν <code>for</code> βρόχο.</p>
-
-<h2 id="Παραδείγματα">Παραδείγματα</h2>
-
-<p>Αν <code>a</code> είναι ένας διδιάστατος πίνακας με 10 στοιχεία σε κάθε πλευρά, ο ακόλουθος κώδικας χρησιμοποιεί τον τελεστή κόμμα για να αυξήσει δύο μεταβλητές με την μία.</p>
-
-<p>Ο ακόλουθος κώδικας εκτυπώνει τις τιμές των διαγώνιων στοιχείων του πίνακα:</p>
-
-<pre class="brush:js;highlight:[1]">for (var i = 0, j = 9; i &lt;= 9; i++, j--)
- console.log('a[' + i + '][' + j + '] = ' + a[i][j]);</pre>
-
-<p>Παρατηρήστε ότι το κόμμα στις αναθέσεις όπως στην <code>var</code> δήλωση μπορεί να μην έχει το κανονικό αποτέλεσμα του τελεστή κόμμα επειδή δεν υπάρχει μέσα σε έκφραση. Στο ακόλουθο παράδειγμα, το <code>a</code> παίρνει την τιμή του <code>b = 3</code> (η οποία είναι 3), αλλά η έκφραση <code>c = 4</code> επίσης αποτιμάται και το αποτέλεσμά της επιστρέφει στην κονσόλα (δηλαδή, 4). Αυτό οφείλεται στην <a href="/en-US/docs/Web/JavaScript/Reference/Operators/Operator_Precedence">προτεραιότητα τελεστών και προσεταιριστικότητα</a>.</p>
-
-<pre class="brush: js">// Παρατηρήστε οτι τα παρακάτω δημιουργούν globals το οποίο απαγορεύεται στο strict mode.
-
-a = b = 3, c = 4; // Επιστρέφει 4 στην κονσόλα
-console.log(a); // 3 (αριστερότερο)
-
-x = (y = 5, z = 6); // Επιστρέφει 6 στην κονσόλα
-console.log(x); // 6 (δεξιότερο)
-</pre>
-
-<p>Ο τελεστής κόμμα είναι τελείως διαφορετικός από το κόμμα μέσα σε πίνακες, αντικείμενα, και ορίσματα και παραμέτρους συνάρτησης.</p>
-
-<h3 id="Επεξεργασία_και_επιστροφή">Επεξεργασία και επιστροφή</h3>
-
-<p>Ένα παράδειγμα ακόμα που μπορεί να κάνει κάποιος με τον τελεστή κόμμα είναι επεξεργασία πρίν την επιστροφή. Όπως αναφέρθηκε, μόνο το τελευταίο στοιχείο θα γυρίσει, πλην όμως, όλα τα άλλα πρόκειται να αποτιμηθούν εξίσου. Οπότε, κάποιος θα μπορούσε να κάνει:</p>
-
-<pre class="brush: js">function myFunc() {
- var x = 0;
-
- return (x += 1, x); // Ίδιο με το return ++x;
-}</pre>
-
-<h2 id="Προδιαγραφές">Προδιαγραφές</h2>
-
-<table class="standard-table">
- <tbody>
- <tr>
- <th scope="col">Προδιαγραφή</th>
- <th scope="col">Κατάσταση</th>
- <th scope="col">Σχόλιο</th>
- </tr>
- <tr>
- <td>{{SpecName('ESDraft', '#sec-comma-operator', 'Comma operator')}}</td>
- <td>{{Spec2('ESDraft')}}</td>
- <td> </td>
- </tr>
- <tr>
- <td>{{SpecName('ES6', '#sec-comma-operator', 'Comma operator')}}</td>
- <td>{{Spec2('ES6')}}</td>
- <td> </td>
- </tr>
- <tr>
- <td>{{SpecName('ES5.1', '#sec-11.14', 'Comma operator')}}</td>
- <td>{{Spec2('ES5.1')}}</td>
- <td> </td>
- </tr>
- <tr>
- <td>{{SpecName('ES1', '#sec-11.14', 'Comma operator')}}</td>
- <td>{{Spec2('ES1')}}</td>
- <td>Αρχικός Ορισμός</td>
- </tr>
- </tbody>
-</table>
-
-<h2 id="Συμβατότητα_Προγράμματος_Περιήγησης">Συμβατότητα Προγράμματος Περιήγησης</h2>
-
-<p>{{CompatibilityTable}}</p>
-
-<div id="compat-desktop">
-<table class="compat-table">
- <tbody>
- <tr>
- <th>Χαρακτηριστικό</th>
- <th>Chrome</th>
- <th>Edge</th>
- <th>Firefox (Gecko)</th>
- <th>Internet Explorer</th>
- <th>Opera</th>
- <th>Safari</th>
- </tr>
- <tr>
- <td>Βασική Υποστήριξη</td>
- <td>{{CompatVersionUnknown}}</td>
- <td>{{CompatVersionUnknown}}</td>
- <td>{{CompatVersionUnknown}}</td>
- <td>3.0</td>
- <td>{{CompatVersionUnknown}}</td>
- <td>{{CompatVersionUnknown}}</td>
- </tr>
- </tbody>
-</table>
-</div>
-
-<div id="compat-mobile">
-<table class="compat-table">
- <tbody>
- <tr>
- <th>Χαρακτηριστικό</th>
- <th>Android</th>
- <th>Chrome for Android</th>
- <th>Edge</th>
- <th>Firefox Mobile (Gecko)</th>
- <th>IE Mobile</th>
- <th>Opera Mobile</th>
- <th>Safari Mobile</th>
- </tr>
- <tr>
- <td>Βασική Υποστήριξη</td>
- <td>{{CompatVersionUnknown}}</td>
- <td>{{CompatVersionUnknown}}</td>
- <td>{{CompatVersionUnknown}}</td>
- <td>{{CompatVersionUnknown}}</td>
- <td>{{CompatVersionUnknown}}</td>
- <td>{{CompatVersionUnknown}}</td>
- <td>{{CompatVersionUnknown}}</td>
- </tr>
- </tbody>
-</table>
-</div>
-
-<h2 id="Δείτε_επίσης">Δείτε επίσης</h2>
-
-<ul>
- <li><a href="/en-US/docs/Web/JavaScript/Reference/Statements/for">for βρόχος</a></li>
-</ul>
diff --git a/files/el/web/javascript/reference/operators/index.html b/files/el/web/javascript/reference/operators/index.html
deleted file mode 100644
index 9ed1cba01e..0000000000
--- a/files/el/web/javascript/reference/operators/index.html
+++ /dev/null
@@ -1,301 +0,0 @@
----
-title: Expressions and operators
-slug: Web/JavaScript/Reference/Operators
-tags:
- - JavaScript
- - εκφράσεις
- - τελεστές
-translation_of: Web/JavaScript/Reference/Operators
----
-<div>{{jsSidebar("Operators")}}</div>
-
-<p>Στο κεφάλαιο αυτό περιγράφονται όλοι οι τελεστές, οι εκφράσεις και οι λέξεις κλειδιά της JavaScript.</p>
-
-<h2 id="Εκφράσεις_και_τελεστές_ανά_κατηγορία">Εκφράσεις και τελεστές ανά κατηγορία</h2>
-
-<p>Για αλφαβητική ταξινόμηση δείτε το μενού στα αριστερά.</p>
-
-<h3 id="Πρωταρχικές_εκφράσεις">Πρωταρχικές εκφράσεις</h3>
-
-<p>Βασικές λέξεις κλειδιά και γενικές εκφράσεις στην JavaScript.</p>
-
-<dl>
- <dt>{{jsxref("Operators/this", "this")}}</dt>
- <dd>Η λέξη κλειδί <code>this</code> αναφέρεται στο προγραμματιστικό πλαίσιο της εκάστοτε συνάρτησης.</dd>
- <dt>{{jsxref("Operators/function", "function")}}</dt>
- <dd>Η λέξη κλειδί <code>function</code> ορίζει μια εκφραση δήλωσης συνάρτησης (function).</dd>
- <dt>{{jsxref("Operators/class", "class")}}</dt>
- <dd>Η λέξη κλειδί <code>class</code> ορίζει μια έκφραση δήλωσης κλάσης(class).</dd>
- <dt>{{jsxref("Operators/function*", "function*")}}</dt>
- <dd>Η λέξη κλειδί <code>function*</code> ορίζει μια έκφραση δήλωσης συνάρτησης γεννήτριας (generator function).</dd>
- <dt>{{jsxref("Operators/yield", "yield")}}</dt>
- <dd>Διακόπτει και συνεχίζει μια συνάρτηση γεννήτρια.</dd>
- <dt>{{jsxref("Operators/yield*", "yield*")}}</dt>
- <dd>Αναθέτει σε μια άλλη συνάρτηση γεννήτριας ή σε κάποιο επαναλήψιμο αντικείμενο.</dd>
- <dt>{{experimental_inline}} {{jsxref("Operators/async_function", "async function*")}}</dt>
- <dd>Η <code>async function</code> ορίζει μια έκφραση δήλωσης ασυγχρονης συνάρτησης (async function).</dd>
- <dt>{{experimental_inline}} {{jsxref("Operators/await", "await")}}</dt>
- <dd>Διακόπτει και συνεχίζει μια ασύγχρονη συνάρτηση, και περιμένει την ασύχρονη απάντηση/απόρριψη από αυτή.</dd>
- <dt>{{jsxref("Global_Objects/Array", "[]")}}</dt>
- <dd>Βασική σύνταξη αρχικοποίησης ενός πίνακα (Array).</dd>
- <dt>{{jsxref("Operators/Object_initializer", "{}")}}</dt>
- <dd>Βασική σύνταξη αρχικοποίησης ενός αντικειμένου (Object).</dd>
- <dt>{{jsxref("Global_Objects/RegExp", "/ab+c/i")}}</dt>
- <dd>Βασική σύνταξη αρχικοποίησης μιας κοινής έκφρασης (Regular Expression).</dd>
- <dt>{{jsxref("Operators/Grouping", "( )")}}</dt>
- <dd>Τελεστής ομαδοποίησης.</dd>
-</dl>
-
-<h3 id="Εκφράσεις_αριστερής_πλευράς_(Left-hand-side)">Εκφράσεις αριστερής πλευράς (Left-hand-side)</h3>
-
-<p>Οι τιμές στο αριστερό μέρος αποτελούν τον προορισμό της ανάθεσης.</p>
-
-<dl>
- <dt>{{jsxref("Operators/Property_accessors", "Property accessors", "", 1)}}</dt>
- <dd>Οι τελεστές μέλους παρέχουν πρόσβαση στις ιδιότητες ή στις μεθόδους ενός αντικειμένου.<br>
- (<code>object.property</code> and <code>object["property"]</code>).</dd>
- <dt>{{jsxref("Operators/new", "new")}}</dt>
- <dd>Ο τελεστής <code>new</code> δημιουργεί ένα στιγμιότυπο ενός κατασκευαστή (constructor).</dd>
- <dt><a href="/en-US/docs/Web/JavaScript/Reference/Operators/new.target">new.target</a></dt>
- <dd>Στους κατασκευαστές, <code>new.target</code> αναφέρεται στους κατασκευαστές που κλήθηκαν από το {{jsxref("Operators/new", "new")}}.</dd>
- <dt>{{jsxref("Operators/super", "super")}}</dt>
- <dd>Η λέξη κλειδί <code>super</code> καλεί τον κατασκευαστή του γονέα (parent constructor).</dd>
- <dt>{{jsxref("Operators/Spread_operator", "...obj")}}</dt>
- <dd>Η σύνταξη διάδοσης (Spread syntax) επιτρέπει σε μια έκφραση να εξαπλωθεί σε σημεία όπου αναμένονται πολλαπλά ορίσματα (πχ. κλήση συνάρτησης) ή πολλαπλά στοιχεία (πχ αρχική δήλωση πινάκων).</dd>
-</dl>
-
-<h3 id="Επαυξηση_και_μείωση">Επαυξηση και μείωση</h3>
-
-<p>Τελεστές Postfix/prefix επαύξησης και  postfix/prefix μείωσης.</p>
-
-<dl>
- <dt>{{jsxref("Operators/Arithmetic_Operators", "A++", "#Increment")}}</dt>
- <dd>Τελεστής αύξησης μετά την μεταβλητή (Postfix).</dd>
- <dt>{{jsxref("Operators/Arithmetic_Operators", "A--", "#Decrement")}}</dt>
- <dd>Τελεστής μείωσης μετά την μεταβλητή (Postfix).</dd>
- <dt>{{jsxref("Operators/Arithmetic_Operators", "++A", "#Increment")}}</dt>
- <dd>Τελεστής αύξησης πριν την μεταβλητή (Prefix).</dd>
- <dt>{{jsxref("Operators/Arithmetic_Operators", "--A", "#Decrement")}}</dt>
- <dd>Τελεστής μείωσης πριν την μεταβλητή (Prefix).</dd>
-</dl>
-
-<h3 id="Μοναδιαίοι_τελεστές">Μοναδιαίοι τελεστές</h3>
-
-<p>Μοναδιαία είναι η διαδικασία που απαιτεί μόνο εναν τελεστή.</p>
-
-<dl>
- <dt>{{jsxref("Operators/delete", "delete")}}</dt>
- <dd>Ο τελεστής <code>delete</code> διαγράφει ένα χαρακτηριστικό από ένα αντικείμενο.</dd>
- <dt>{{jsxref("Operators/void", "void")}}</dt>
- <dd>Ο τελεστής <code>void</code> απορρίπτει την επιστρεφόμενη τιμή μιας έκφρασης.</dd>
- <dt>{{jsxref("Operators/typeof", "typeof")}}</dt>
- <dd>Ο τελεστής <code>typeof</code> προσδιορίζει τον τύπο ενός δεδομένου αντικειμένου.</dd>
- <dt>{{jsxref("Operators/Arithmetic_Operators", "+", "#Unary_plus")}}</dt>
- <dd>Ο τελεστής unary plus μετατρέπει τον όρο πράξης του σε αριθμό (Number type).</dd>
- <dt>{{jsxref("Operators/Arithmetic_Operators", "-", "#Unary_negation")}}</dt>
- <dd>Ο τελεστής unary negation μετατρέπει τον όρο πράξης του σε αριθμό (Number type) και ακολούθως τον μετατρέπει σε αρνητικό.</dd>
- <dt>{{jsxref("Operators/Bitwise_Operators", "~", "#Bitwise_NOT")}}</dt>
- <dd>Τελεστής άρνησης σε επίπεδο bit (Bitwise NOT).</dd>
- <dt>{{jsxref("Operators/Logical_Operators", "!", "#Logical_NOT")}}</dt>
- <dd>Τελεστής λογικής άρνησης (Logical NOT).</dd>
-</dl>
-
-<h3 id="Αριθμητικοί_τελεστές">Αριθμητικοί τελεστές</h3>
-
-<p>Οι αριθμητικοί τελεστές δέχονται αριθμητικές τιμές σαν ορίσματα πράξης (είτε αριθμούς, είτε μεταβλητές) και επιστρέφουν μια απλή αριθμητική τιμή.</p>
-
-<dl>
- <dt>{{jsxref("Operators/Arithmetic_Operators", "+", "#Addition")}}</dt>
- <dd>Τελεστής πρόσθεσης.</dd>
- <dt>{{jsxref("Operators/Arithmetic_Operators", "-", "#Subtraction")}}</dt>
- <dd>Τελεστής αφαίρεσης.</dd>
- <dt>{{jsxref("Operators/Arithmetic_Operators", "/", "#Division")}}</dt>
- <dd>Τελεστής διαίρεσης.</dd>
- <dt>{{jsxref("Operators/Arithmetic_Operators", "*", "#Multiplication")}}</dt>
- <dd>Τελεστής πολλαπλασιασμού.</dd>
- <dt>{{jsxref("Operators/Arithmetic_Operators", "%", "#Remainder")}}</dt>
- <dd>Τελεστής υπολοίπου διαίρεσης.</dd>
-</dl>
-
-<dl>
- <dt>{{jsxref("Operators/Arithmetic_Operators", "**", "#Exponentiation")}}</dt>
- <dd>Εκθετικός τελεστής.</dd>
-</dl>
-
-<h3 id="Σχεσιακοί_τελεστές">Σχεσιακοί τελεστές</h3>
-
-<p>Ενας τελεστής σύγκρισης συγκρίνει τα ορίσματα πράξης και επιστρέφει μια Boolean τιμή βασισμένη στο αν η σύγκριση είναι αληθής.</p>
-
-<dl>
- <dt>{{jsxref("Operators/in", "in")}}</dt>
- <dd>Ο τελεστής <code>in</code> προσδιορίζει αν ενα αντικείμενο έχει ένα συγκεκριμένο χαρακτηριστικό.</dd>
- <dt>{{jsxref("Operators/instanceof", "instanceof")}}</dt>
- <dd>Ο τελεστής <code>instanceof</code> προσδιορίζει αν ένα αντικείμενο είναι στιγμιότυπο ενός άλλου αντικειμένου.</dd>
- <dt>{{jsxref("Operators/Comparison_Operators", "&lt;", "#Less_than_operator")}}</dt>
- <dd>Τελεστής 'μικρότερο από'.</dd>
- <dt>{{jsxref("Operators/Comparison_Operators", "&gt;", "#Greater_than_operator")}}</dt>
- <dd>Τελεστής 'μεγαλύτερο από'.</dd>
- <dt>{{jsxref("Operators/Comparison_Operators", "&lt;=", "#Less_than_or_equal_operator")}}</dt>
- <dd>Τελεστής 'μικρότερο από ή ίσο'.</dd>
- <dt>{{jsxref("Operators/Comparison_Operators", "&gt;=", "#Greater_than_or_equal_operator")}}</dt>
- <dd>Τελεστής 'μεγαλύτερο από ή ίσο'.</dd>
-</dl>
-
-<div class="note">
-<p><strong>Σημείωση: </strong>το <strong>=&gt;</strong>  δεν είναι τελεστής αλλά αποτελεί σημειογραφία για τις <a href="/en-US/docs/Web/JavaScript/Reference/Functions/Arrow_functions">Arrow functions</a>.</p>
-</div>
-
-<h3 id="Τελεστές_ισότητας">Τελεστές ισότητας</h3>
-
-<p>Το αποτέλεσμα των τελεστών ισότητας είναι πάντα τύπου Boolean και βασίζεται στο αν η σύγκριση είανι αληθής.</p>
-
-<dl>
- <dt>{{jsxref("Operators/Comparison_Operators", "==", "#Equality")}}</dt>
- <dd>Τελεστής ισότητας.</dd>
- <dt>{{jsxref("Operators/Comparison_Operators", "!=", "#Inequality")}}</dt>
- <dd>Τελεστής ανισότητας, διαφορετικότητας.</dd>
- <dt>{{jsxref("Operators/Comparison_Operators", "===", "#Identity")}}</dt>
- <dd>Τελεστής ισότητας ταυτότητας.</dd>
- <dt>{{jsxref("Operators/Comparison_Operators", "!==", "#Nonidentity")}}</dt>
- <dd>Τελεστής ανισότητας ταυτότητας.</dd>
-</dl>
-
-<h3 id="Τελεστές_κύλισης_bits">Τελεστές κύλισης bits</h3>
-
-<p>Λειτουργία κύλισης όλων των bits των ορισμάτων.</p>
-
-<dl>
- <dt>{{jsxref("Operators/Bitwise_Operators", "&lt;&lt;", "#Left_shift")}}</dt>
- <dd>Τελεστής αριστερής κύλισης bit (Bitwise left shift).</dd>
- <dt>{{jsxref("Operators/Bitwise_Operators", "&gt;&gt;", "#Right_shift")}}</dt>
- <dd>Τελεστής δεξιάς κύλισης bit (Bitwise right shift).</dd>
- <dt>{{jsxref("Operators/Bitwise_Operators", "&gt;&gt;&gt;", "#Unsigned_right_shift")}}</dt>
- <dd>Τελεστής δεξιάς κύλισης bit χωρίς πρόσημο (Bitwise right shift).</dd>
-</dl>
-
-<h3 id="Δυαδικοί_τελεστές_bits">Δυαδικοί τελεστές bits</h3>
-
-<p>Οι δυαδικοί τελεστές bits χειριζονται τα ορίσματα τους σαν σετ απο 32 bits (0,1) και επιστρέφουν μια αριθμητική τιμή.</p>
-
-<dl>
- <dt>{{jsxref("Operators/Bitwise_Operators", "&amp;", "#Bitwise_AND")}}</dt>
- <dd>Bitwise AND.</dd>
- <dt>{{jsxref("Operators/Bitwise_Operators", "|", "#Bitwise_OR")}}</dt>
- <dd>Bitwise OR.</dd>
- <dt>{{jsxref("Operators/Bitwise_Operators", "^", "#Bitwise_XOR")}}</dt>
- <dd>Bitwise XOR.</dd>
-</dl>
-
-<h3 id="Δυαδικοί_λογικοί_τελεστές">Δυαδικοί λογικοί τελεστές</h3>
-
-<p>Οι λογικοί τελεστές τυπικά χρησιμοποιούνται με boolean (λογικές) τιμές, και επιστρέφουν μια επίσης boolean τιμή.</p>
-
-<dl>
- <dt>{{jsxref("Operators/Logical_Operators", "&amp;&amp;", "#Logical_AND")}}</dt>
- <dd>Λογικό 'και' (AND).</dd>
- <dt>{{jsxref("Operators/Logical_Operators", "||", "#Logical_OR")}}</dt>
- <dd>Λογικό 'ή' (OR).</dd>
-</dl>
-
-<h3 id="Τριαδικός_υποθετικός_τελεστής">Τριαδικός υποθετικός τελεστής</h3>
-
-<dl>
- <dt>{{jsxref("Operators/Conditional_Operator", "(condition ? ifTrue : ifFalse)")}}</dt>
- <dd>
- <p>Ο υποθετικός τελεστής επιστρέφει μια εκ των δύο τιμών, βάση της λογική τιμής της δεδομένης συνθήκης.</p>
- </dd>
-</dl>
-
-<h3 id="Τελεστές_ανάθεσης.">Τελεστές ανάθεσης.</h3>
-
-<p>Ένας τελεστής ανάθεσης αναθέτει μια τιμή στο αριστερό όρισμα βάση της τιμής του δεξιού ορίσματος.</p>
-
-<dl>
- <dt>{{jsxref("Operators/Assignment_Operators", "=", "#Assignment")}}</dt>
- <dd>Τελεστής ανάθεσης.</dd>
- <dt>{{jsxref("Operators/Assignment_Operators", "*=", "#Multiplication_assignment")}}</dt>
- <dd>Τελεστής ανάθεσης πολλαπλάσιου.</dd>
- <dt>{{jsxref("Operators/Assignment_Operators", "/=", "#Division_assignment")}}</dt>
- <dd>Τελεστής ανάθεσης διαιρεταίου.</dd>
- <dt>{{jsxref("Operators/Assignment_Operators", "%=", "#Remainder_assignment")}}</dt>
- <dd>Τελεστής ανάθεσης υπολοίπου.</dd>
- <dt>{{jsxref("Operators/Assignment_Operators", "+=", "#Addition_assignment")}}</dt>
- <dd>Τελεστής ανάθεσης αθροίσματος.</dd>
- <dt>{{jsxref("Operators/Assignment_Operators", "-=", "#Subtraction_assignment")}}</dt>
- <dd>Τελεστής ανάθεσης αφαίρεσης.</dd>
- <dt>{{jsxref("Operators/Assignment_Operators", "&lt;&lt;=", "#Left_shift_assignment")}}</dt>
- <dd>Τελεστής ανάθεσης αριστερής κύλισης bit.</dd>
- <dt>{{jsxref("Operators/Assignment_Operators", "&gt;&gt;=", "#Right_shift_assignment")}}</dt>
- <dd>Τελεστής ανάθεσης δεξιάς κύλισης bit.</dd>
- <dt>{{jsxref("Operators/Assignment_Operators", "&gt;&gt;&gt;=", "#Unsigned_right_shift_assignment")}}</dt>
- <dd>Τελεστής ανάθεσης δεξιάς κύλισης bit χωρίς πρόσημο.</dd>
- <dt>{{jsxref("Operators/Assignment_Operators", "&amp;=", "#Bitwise_AND_assignment")}}</dt>
- <dd>Τελεστής ανάθεσης λογικού AND σε επίπεδο bits.</dd>
- <dt>{{jsxref("Operators/Assignment_Operators", "^=", "#Bitwise_XOR_assignment")}}</dt>
- <dd>Τελεστής ανάθεσης λογικού XOR σε επίπεδο bits.</dd>
- <dt>{{jsxref("Operators/Assignment_Operators", "|=", "#Bitwise_OR_assignment")}}</dt>
- <dd>Τελεστής ανάθεσης λογικού OR σε επίπεδο bits.</dd>
- <dt>{{jsxref("Operators/Destructuring_assignment", "[a, b] = [1, 2]")}}<br>
- {{jsxref("Operators/Destructuring_assignment", "{a, b} = {a:1, b:2}")}}</dt>
- <dd>
- <p>Η ανάθεση διάσπασης(destructuring) επιτρέπει την απευθείας ανάθεση των  χαρακτηριστικών, ενός αντικειμένου ή ενός πίνακα, σε μεταβλητές.</p>
- </dd>
-</dl>
-
-<h3 id="Τελεστης_κόμμα_''_(comma)">Τελεστης κόμμα ',' (comma)</h3>
-
-<dl>
- <dt>{{jsxref("Operators/Comma_Operator", ",")}}</dt>
- <dd>Ο τελεστής κόμμα(',') επιτρέπει σε πολλαπλές εκφράσεις να εκτιμηθούν σε μία μόνο δήλωση, και επιστρέφει το αποτέλεσμα της τελευταίας εκφρασης.</dd>
-</dl>
-
-<h3 id="Non-standard_features">Non-standard features</h3>
-
-<dl>
- <dt>{{non-standard_inline}} {{jsxref("Operators/Legacy_generator_function", "Legacy generator function", "", 1)}}</dt>
- <dd>Η λέξη κλειδί <code>function</code> μπορεί να χρησιμοποιηθεί για να ορίσει για συνάρτηση γεννήτρια μέσα σε μια έκφραση. Για να γίνει η συνάρτηση, συναρτηση γεννήτριας το σώμα της θα πρέπει να περιέχει τουλαχιστον μια  {{jsxref("Operators/yield", "yield")}} εκφραση.</dd>
- <dt>{{non-standard_inline}} {{jsxref("Operators/Expression_closures", "Expression closures", "", 1)}}</dt>
- <dd>The expression closure syntax is a shorthand for writing simple function.</dd>
- <dt>{{non-standard_inline}} {{jsxref("Operators/Array_comprehensions", "[for (x of y) x]")}}</dt>
- <dd>Array comprehensions.</dd>
- <dt>{{non-standard_inline}} {{jsxref("Operators/Generator_comprehensions", "(for (x of y) y)")}}</dt>
- <dd>Generator comprehensions.</dd>
-</dl>
-
-<h2 id="Specifications">Specifications</h2>
-
-<table class="standard-table">
- <tbody>
- <tr>
- <th scope="col">Specification</th>
- <th scope="col">Status</th>
- <th scope="col">Comment</th>
- </tr>
- <tr>
- <td>{{SpecName('ES1', '#sec-11', 'Expressions')}}</td>
- <td>{{Spec2('ES1')}}</td>
- <td>Initial definition</td>
- </tr>
- <tr>
- <td>{{SpecName('ES5.1', '#sec-11', 'Expressions')}}</td>
- <td>{{Spec2('ES5.1')}}</td>
- <td> </td>
- </tr>
- <tr>
- <td>{{SpecName('ES6', '#sec-ecmascript-language-expressions', 'ECMAScript Language: Expressions')}}</td>
- <td>{{Spec2('ES6')}}</td>
- <td>New: Spread operator, destructuring assignment, <code>super</code> keyword.</td>
- </tr>
- <tr>
- <td>{{SpecName('ESDraft', '#sec-ecmascript-language-expressions', 'ECMAScript Language: Expressions')}}</td>
- <td>{{Spec2('ESDraft')}}</td>
- <td> </td>
- </tr>
- </tbody>
-</table>
-
-<h2 id="See_also">See also</h2>
-
-<ul>
- <li><a href="/en-US/docs/Web/JavaScript/Reference/Operators/Operator_Precedence">Operator precedence</a></li>
-</ul>
diff --git a/files/el/web/tutorials/index.html b/files/el/web/tutorials/index.html
deleted file mode 100644
index 12a5837128..0000000000
--- a/files/el/web/tutorials/index.html
+++ /dev/null
@@ -1,247 +0,0 @@
----
-title: Οδηγοί εκμάθησης
-slug: Web/Tutorials
-tags:
- - CSS
- - HTML
- - JavaScript
- - MDN
- - Αρχάριος
- - Κώδικας
- - Οδηγός
- - Οδηγός εκμάθησης
- - Σχεδιασμός ιστού
-translation_of: Web/Tutorials
----
-<p>Οι σύνδεσμοι σε αυτή τη σελίδα οδηγούν σε μια ποικιλία οδηγών εκμάθησης και εργαλεία εκπαίδευσης. <strong>Είτε ξεκινάτε τώρα, μαθαίνετε τα βασικά, ή είστε έμπειρος στον προγραμματισμό ιστού, εδώ μπορείτε να βρείτε χρήσιμους πόρους για καλύτερες πρακτικές. </strong>Αυτοί οι πόροι δημιουργούνται από πρωτοποριακές εταιρείες και από προγραμματιστές που έχουν ασπαστεί τα ανοικτά πρότυπα και τις βέλτιστες πρακτικές για προγραμματισμό ιστού, που παρέχουν ή επιτρέπουν μεταφράσεις, μέσω μιας ανοικτής άδειας περιεχομένου, όπως η Creative Commons.</p>
-
-<h2 id="Για_αρχάριους_στο_διαδίκτυο">Για αρχάριους στο διαδίκτυο</h2>
-
-<dl>
- <dt><a href="/en-US/docs/Learn/Getting_started_with_the_web">Ξεκινώντας με το διαδίκτυο</a></dt>
- <dd>Το<em> "Ξεκινώντας με το διαδίκτυο" </em>είναι μια περιεκτική σειρά, που σάς εισάγει στις πρακτικότητες του προγραμματισμού ιστού. Θα ρυθμίσετε τα εργαλεία που χρειάζεστε ώστε να κατασκευάσετε μια απλή ιστοσελίδα και να δημοσιεύσετε το δικό σας απλό κώδικα.</dd>
-</dl>
-
-<h2 class="Documentation" id="Documentation" name="Documentation">Οδηγοί εκμάθησης HTML</h2>
-
-<h3 id="Εισαγωγικό_επίπεδο">Εισαγωγικό επίπεδο</h3>
-
-<div class="row topicpage-table">
-<div class="section">
-<dl>
- <dt><a href="/en-US/docs/Learn/HTML/Introduction_to_HTML">Εισαγωγή στο HTML</a></dt>
- <dd>Αυτή η ενότητα θέτει τα θεμέλια, εξοικειώνοντάς σας με σημαντικές ιδέες και συντακτικό, την προβολή εφαρμογών HTML σε κείμενο, τη δημιουργία υπερσυνδέσμων και τη χρήση του HTML για τη δόμηση μιας ιστοσελίδας.</dd>
- <dt><strong><a href="https://developer.mozilla.org/en-US/docs/HTML/Element">Αναφορά σε στοιχεία HTML του MDN</a></strong></dt>
- <dd>Μια περιεκτική αναφορά για τα στοιχεία HTML και πώς τα υποστηρίζουν τα διάφορα προγράμματα περιήγησης.</dd>
-</dl>
-</div>
-
-<div class="section">
-<dl>
- <dt><strong><a href="https://www.theblogstarter.com/html-for-beginners">Δημιουργία μιας απλής ιστοσελίδας με HTML</a> (The Blog Starter)</strong></dt>
- <dd>Ένας οδηγός HTML για αρχάριους, ο οποίος περιλαμβάνει επεξηγήσεις για κοινές ετικέτες, συμπεριλαμβανομένων και των ετικετών HTML5. Περιλαμβάνει επίσης έναν οδηγό βήμα προς βήμα για τη δημιουργία μιας βασικής ιστοσελίδας με παραδείγματα.</dd>
- <dt><strong><a href="http://wikiversity.org/wiki/Web_Design/HTML_Challenges" rel="external">Προκλήσεις HTML</a> (Wikiversity)</strong></dt>
- <dd>Τελειοποιήστε τις ικανότητες HTML σας μέσω των προκλήσεων (για παράδειγμα, "Να χρησιμοποιήσω ένα στοιχείο &lt;h2&gt; ή ένα στοιχείο &lt;strong&gt;;"), με έμφαση στις σημαντικές επισημάνσεις.</dd>
-</dl>
-</div>
-</div>
-
-<h3 id="Μέσο_επίπεδο">Μέσο επίπεδο</h3>
-
-<div class="row topicpage-table">
-<div class="section">
-<dl>
- <dt><a href="/en-US/docs/Learn/HTML/Multimedia_and_embedding">Πολυμέσα και ενσωμάτωση</a></dt>
- <dd>Αυτή η ενότητα εξερευνεί τις χρήσεις του HTML για τη συμπερίληψη πολυμέσων στις ιστοσελίδες σας, καθώς και τους διάφορους τρόπους με τους οποίους μπορούν να προστεθούν εικόνες και να ενσωματωθούν βίντεο, ήχος, ακόμη και ολόκληρες ιστοσελίδες.</dd>
-</dl>
-</div>
-
-<div class="section">
-<dl>
- <dt><a href="/en-US/docs/Learn/HTML/Tables">Πίνακες HTML</a></dt>
- <dd>Η απεικόνηση των δεδομένων πίνακα που βρίσκονται σε μια ιστοσελίδα, με έναν κατανοητό, {{glossary("Accessibility", "προσιτό")}} τρόπο, μπορεί να είναι δύσκολη υπόθεση. Αυτή η ενότητα καλύπτει βασικές σημάνσεις πίνακα, καθώς και πιο περίπλοκες λειτουργίες, όπως η υλοποίηση λεζαντών και επισκοπήσεων.</dd>
-</dl>
-</div>
-</div>
-
-<h3 id="Προηγμένο_επίπεδο">Προηγμένο επίπεδο</h3>
-
-<div class="row topicpage-table">
-<div class="section">
-<dl>
- <dt><a href="/en-US/docs/Learn/HTML/Forms">Φόρμες HTML</a></dt>
- <dd>Οι φόρμες είναι αναπόσπαστο κομμάτι του διαδικτύου — παρέχουν μέγαλο ποσοστό της λειτουργικότητας που χρειάζεστε για την αλληλεπίδραση με τις ιστοσελίδες, π.χ. εγγραφή και σύνδεση, αποστολή σχολίων, αγορά προϊόντων και πολλά άλλα. Αυτή η ενότητα θα σάς βοηθήσει να ξεκινήσετε τη δημιουγία των μερών των φορμών που αφορούν το πρόγραμμα-πελάτη.</dd>
- <dt><strong><a href="https://developer.mozilla.org/en-US/docs/Tips_for_Authoring_Fast-loading_HTML_Pages">Συμβουλές για τη δημιουργία σελίδων HTML ταχείας φόρτωσης</a></strong></dt>
- <dd>Βελτιστοποιήστε τις ιστοσελίδες ώστε να είναι πιο αποκρίσιμες για τους επισκέπτες και να μειώσετε τη φόρτωση στο διακομιστή σας και τη σύνδεσή σας στο διαδίκτυο.</dd>
-</dl>
-</div>
-</div>
-
-<h2 class="Documentation" id="Documentation" name="Documentation">Οδηγοί εκμάθησης CSS</h2>
-
-<h3 id="Εισαγωγικό_επίπεδο_2">Εισαγωγικό επίπεδο</h3>
-
-<div class="row topicpage-table">
-<div class="section">
-<dl>
- <dt><a href="/en-US/docs/Learn/Getting_started_with_the_web/CSS_basics">Βασικά CSS</a></dt>
- <dd>Το CSS (Cascading Style Sheets - Διαδοχικά Φύλλα Στυλ) είναι ο κώδικας που χρησιμοποιείτε για να δώσετε στυλ στην ιστοσελίδα σας. Το "<em>Βασικά CSS"</em> σάς παρέχει όλα όσα χρειάζεστε για να ξεκινήσετε. Θα απαντήσουμε σε ερωτήσεις όπως: Πώς μετατρέπω το κείμενό μου σε μαύρο ή κόκκινο; Πώς μπορώ να κάνω το περιεχόμενό μου να εμφανίζεται στο τάδε σημείο της οθόνης; Πώς διακοσμώ την ιστοσελίδα μου με εικόνες και χρώματα φόντου;</dd>
- <dt><a href="/en-US/docs/Learn/CSS/Introduction_to_CSS">Εισαγωγή στο CSS</a></dt>
- <dd>Αυτή η ενότητα εμβαθύνει στον τρόπο λειτουργίας του CSS, συμπεριλαμβανομένων και των επιλογέων και των ιδιοτήτων, της εγγραφής κανόνων CSS, της εφαρμογής CSS σε HTML, του καθορισμού μήκους, χρώματος και άλλων στοιχείων CSS, cascade and inheritance, box model basics, and debugging CSS.</dd>
-</dl>
-</div>
-
-<div class="section">
-<dl>
- <dt><a href="/en-US/docs/Learn/CSS/Styling_boxes">Styling boxes</a></dt>
- <dd>Next up, we look at styling boxes, one of the fundamental steps towards laying out a web page. In this module we recap the box model then look at controlling box layouts by setting padding, borders and margins, setting custom background colors, images and other features, and fancy features such as drop shadows and filters on boxes.</dd>
- <dt><a href="/en-US/docs/Learn/CSS/Styling_text">Styling text</a></dt>
- <dd>Here we look at text styling fundamentals, including setting font, boldness, and italics, line and letter spacing, and drop shadows and other text features. We round off the module by looking at applying custom fonts to your page, and styling lists and links.</dd>
- <dt><strong><a href="https://developer.mozilla.org/en-US/docs/Common_CSS_Questions">Common CSS Questions</a></strong></dt>
- <dd>Common questions and answers for beginners.</dd>
-</dl>
-</div>
-</div>
-
-<h3 id="Μέσο_επίπεδο_2">Μέσο επίπεδο</h3>
-
-<div class="row topicpage-table" style="width: 100%;">
-<div class="section">
-<dl>
- <dt><a href="/en-US/docs/Learn/CSS/CSS_layout">Διάταξη CSS</a></dt>
- <dd>At this point we've already looked at CSS fundamentals, how to style text, and how to style and manipulate the boxes that your content sits inside. Now it's time to look at how to place your boxes in the right place in relation to the viewport, and one another. We have covered the necessary prerequisites so can now dive deep into CSS layout, looking at different display settings, traditional layout methods involving float and positioning, and new fangled layout tools like flexbox.</dd>
- <dt><strong><a href="https://developer.mozilla.org/en-US/docs/CSS/CSS_Reference">Αναφορά CSS</a></strong></dt>
- <dd>Complete reference to CSS, with details on support by Firefox and other browsers.</dd>
-</dl>
-</div>
-
-<div class="section">
-<dl>
- <dt><strong><a href="http://www.alistapart.com/articles/fluidgrids/" rel="external">Ρευστά πλέγματα (Fluid Grids)</a> (A List Apart)</strong></dt>
- <dd>Design layouts that fluidly resize with the browser window, while still using a typographic grid.</dd>
- <dt><strong><a href="http://en.wikiversity.org/wiki/Web_Design/CSS_challenges" rel="external">Προκλήσεις CSS </a>(Wikiversity)</strong></dt>
- <dd>Flex your CSS skills, and see where you need more practice.</dd>
-</dl>
-</div>
-</div>
-
-<h3 id="Προηγμένο_επίπεδο_2">Προηγμένο επίπεδο</h3>
-
-<div class="row topicpage-table">
-<div class="section">
-<dl>
- <dt><strong><a href="/en-US/docs/Web/CSS/CSS_Transforms/Using_CSS_transforms">Χρήση μεταμορφώσεων CSS</a></strong></dt>
- <dd>Apply rotation, skewing, scaling, and translation using CSS.</dd>
- <dt><strong><a href="https://developer.mozilla.org/en-US/docs/CSS/CSS_transitions">Μεταβάσεις CSS</a></strong></dt>
- <dd>CSS transitions, part of the draft CSS3 specification, provide a way to animate changes to CSS properties, instead of having the changes take effect instantly.</dd>
-</dl>
-</div>
-
-<div class="section">
-<dl>
- <dt><strong><a href="http://www.html5rocks.com/tutorials/webfonts/quick/" rel="external">Γρήγορος οδηγός για υλοποίηση γραμματοσειρών ιστού με το @font-face</a> (HTML5 Rocks)</strong></dt>
- <dd>The @font-face feature from CSS3 allows you to use custom typefaces on the web in an accessible, manipulatable, and scalable way.</dd>
- <dt><strong><a href="http://davidwalsh.name/starting-css" rel="external">Starting to Write CSS</a> (David Walsh)</strong></dt>
- <dd>An introduction to tools and methodologies to write more succinct, maintainable, and scalable CSS.</dd>
-</dl>
-</div>
-</div>
-
-<div class="section">
-<dl>
- <dt><a href="/en-US/docs/Web/API/Canvas_API/Tutorial">Canvas tutorial</a></dt>
- <dd>Learn how to draw graphics using scripting using the canvas element.</dd>
- <dt><strong><a href="http://html5doctor.com/" rel="external">HTML5 Doctor</a></strong></dt>
- <dd>Articles about using HTML5 right now.</dd>
-</dl>
-</div>
-
-<h2 class="Documentation" id="Documentation" name="Documentation">Οδηγοί εκμάθησης JavaScript</h2>
-
-<h3 id="Εισαγωγικό_επίπεδο_3">Εισαγωγικό επίπεδο</h3>
-
-<div class="row topicpage-table">
-<div class="section">
-<dl>
- <dt> </dt>
- <dt><a href="/en-US/docs/Learn/JavaScript/First_steps">JavaScript first steps</a></dt>
- <dd>In our first JavaScript module, we first answer some fundamental questions such as "what is JavaScript?", "what does it look like?", and "what can it do?", before moving on to taking you through your first practical experience of writing JavaScript. After that, we discuss some key JavaScript features in detail, such as variables, strings, numbers and arrays.</dd>
- <dt><a href="/en-US/docs/Learn/JavaScript/Building_blocks">JavaScript building blocks</a></dt>
- <dd>In this module, we continue our coverage of all JavaScript's key fundamental features, turning our attention to commonly-encountered types of code block such as conditional statements, loops, functions, and events. You've seen this stuff already in the course, but only in passing — here we'll discuss it all explicitly.</dd>
-</dl>
-</div>
-
-<div class="section">
-<dl>
- <dt><a href="/en-US/docs/Learn/Getting_started_with_the_web/JavaScript_basics">Getting started with JavaScript</a></dt>
- <dd>What is JavaScript and how can it help you?</dd>
- <dt><strong><a href="http://www.codecademy.com/">Codecademy</a> (Codecademy)</strong></dt>
- <dd>Το Codecademy είναι ένας εύκολος τρόπος για να μάθετε πώς να γράφετε κώδικα JavaScript. Είναι διαδραστικό και μπορείτε να το κάνετε με τους φίλους σας.</dd>
-</dl>
-</div>
-</div>
-
-<h3 id="Μέσο_επίπεδο_3">Μέσο επίπεδο</h3>
-
-<div class="row topicpage-table">
-<div class="section">
-<dl>
- <dt><a href="/en-US/docs/Learn/JavaScript/Objects">Introducing JavaScript objects</a></dt>
- <dd>In JavaScript, most things are objects, from core JavaScript features like strings and arrays to the browser APIs built on top of JavaScript. You can even create your own objects to encapsulate related functions and variables into efficient packages. The object-oriented nature of JavaScript is important to understand if you want to go further with your knowledge of the language and write more efficient code, therefore we've provided this module to help you. Here we teach object theory and syntax in detail, look at how to create your own objects, and explain what JSON data is and how to work with it.</dd>
- <dt><a href="/en-US/docs/Learn/JavaScript/Client-side_web_APIs">Client-side web APIs</a></dt>
- <dd>When writing client-side JavaScript for web sites or applications, you won't go very far before you start to use APIs — interfaces for manipulating different aspects of the browser and operating system the site is running on, or even data from other web sites or services. In this module we will explore what APIs are, and how to use some of the most common APIs you'll come across often in your development work. </dd>
-</dl>
-</div>
-
-<div class="section">
-<dl>
- <dt><strong><a href="https://developer.mozilla.org/en-US/docs/A_re-introduction_to_JavaScript">A re-Introduction to JavaScript</a></strong></dt>
- <dd>A recap of the JavaScript programming language aimed at intermediate-level developers.</dd>
- <dt><strong><a href="http://eloquentjavascript.net/" rel="external">Eloquent JavaScript</a></strong></dt>
- <dd>A comprehensive guide to intermediate and advanced JavaScript methodologies.</dd>
- <dt><strong><a href="http://speakingjs.com/es5/" rel="external">Speaking JavaScript</a> (Dr. Axel Rauschmayer)</strong></dt>
- <dd>For programmers who want to learn JavaScript quickly and properly, and for JavaScript programmers who want to deepen their skills and/or look up specific topics.</dd>
- <dt><strong><a href="http://www.addyosmani.com/resources/essentialjsdesignpatterns/book/" rel="external">Essential JavaScript Design Patterns</a> (Addy Osmani)</strong></dt>
- <dd>An introduction to essential JavaScript design patterns.</dd>
-</dl>
-</div>
-</div>
-
-<h3 id="Προηγμένο_επίπεδο_3">Προηγμένο επίπεδο</h3>
-
-<div class="row topicpage-table">
-<div class="section">
-<dl>
- <dt><a href="/en-US/docs/Web/JavaScript/Guide">Οδηγός JavaScript</a></dt>
- <dd>A comprehensive, regularly updated guide to JavaScript for all levels of learning from beginner to advanced.</dd>
- <dt><strong><a href="https://github.com/getify/You-Dont-Know-JS" rel="external">You Don't Know JS</a> (Kyle Simpson)</strong></dt>
- <dd>Μια σειρά βιβλίων που μελετά τους κύριους μηχανισμούς της γλώσσας JavaScript εις βάθος.</dd>
- <dt><strong><a href="http://bonsaiden.github.com/JavaScript-Garden/" rel="external">JavaScript Garden</a></strong></dt>
- <dd>Τεκμηρίωση για τα πιο "περίεργα" μέρη της JavaScript.</dd>
- <dt><strong><a href="http://exploringjs.com/es6/" rel="external">Εξερεύνηση του ES6</a> (Δρ. Axel Rauschmayer)</strong></dt>
- <dd>Αξιόπιστες και αναλυτικές πληροφορίες στο ECMAScript 2015.</dd>
-</dl>
-</div>
-
-<div class="section"><strong><a href="http://shichuan.github.io/javascript-patterns" rel="external">Μοτίβα JavaScript</a></strong>
-
-<dl>
- <dd>A JavaScript pattern and antipattern collection that covers function patterns, jQuery patterns, jQuery plugin patterns, design patterns, general patterns, literals and constructor patterns, object creation patterns, code reuse patterns, DOM.</dd>
- <dt><strong><a href="http://www.html5rocks.com/en/tutorials/internals/howbrowserswork/">Πώς λειτουργούν τα προγράμματα περιήγησης</a></strong></dt>
- <dd>Ένας λεπτομερές ερευνητικό άρθρο που περιγράφει τα διαφορετικά, σύγχρονα προγράμματα περιήγησης, τους μηχανισμούς τους, την απόδοση σελίδων κλπ.</dd>
- <dt><a href="https://github.com/bolshchikov/js-must-watch">Βίντεο JavaScript</a> (GitHub)</dt>
- <dd>Μια συλλογή από βίντεο JavaScript προς παρακολούθηση.</dd>
-</dl>
-</div>
-</div>
-
-<h3 id="Ανάπτυξη_επεκτάσεων">Ανάπτυξη επεκτάσεων</h3>
-
-<div class="row topicpage-table" style="width: 100%;">
-<div class="section">
-<dl>
- <dt><a href="/en-US/docs/Mozilla/Add-ons/WebExtensions">WebExtensions</a></dt>
- <dd>Το WebExtensions είναι ένα σύστημα για πολλαπλά προγράμματα περιήγησης και αφορά την ανάπτυξη προσθέτων για προγράμματα περιήγησης. Σε μεγάλο βαθμό, το σύστημα είναι συμβατό με το <a class="external-icon external" href="https://developer.chrome.com/extensions">API επεκτάσεων</a>, που υποστηρίζεται από το Google Chrome και το Opera. Οι επεκτάσεις που γράφονται για αυτά τα προγράμματα περιήγησης θα εκτελούνται, στις περισσότερες περιπτώσεις, στο Firefox ή στο <a href="https://developer.microsoft.com/en-us/microsoft-edge/platform/documentation/extensions/">Microsoft Edge</a> με <a href="https://developer.mozilla.org/en-US/Add-ons/WebExtensions/Porting_from_Google_Chrome">λίγες μόνο αλλαγές</a>. Το API είναι επίσης πλήρως συμβατό με το <a href="https://developer.mozilla.org/en-US/Firefox/Multiprocess_Firefox">Firefox με πολυδιεργασίες</a>.</dd>
-</dl>
-</div>
-</div>