Skip to content

Commit

Permalink
fix: flaws in web/javascript batch 7
Browse files Browse the repository at this point in the history
  • Loading branch information
nschonni committed Mar 27, 2021
1 parent e7f3a9b commit 51454f5
Show file tree
Hide file tree
Showing 50 changed files with 308 additions and 308 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@
title: Assignment (=)
slug: Web/JavaScript/Reference/Operators/Assignment
tags:
- Assignment operator
- JavaScript
- Language feature
- Operator
- Reference
- Assignment operator
- JavaScript
- Language feature
- Operator
- Reference
---
<div>{{jsSidebar("Operators")}}</div>

Expand Down Expand Up @@ -56,6 +56,6 @@ <h2 id="See_also">See also</h2>

<ul>
<li><a
href="/en-US/docs/Web/JavaScript/Guide/Expressions_and_Operators#Assignment">Assignment
href="/en-US/docs/Web/JavaScript/Guide/Expressions_and_Operators#assignment">Assignment
operators in the JS guide</a></li>
</ul>
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@
title: Bitwise AND (&)
slug: Web/JavaScript/Reference/Operators/Bitwise_AND
tags:
- Bitwise operator
- JavaScript
- Language feature
- Operator
- Reference
- Bitwise operator
- JavaScript
- Language feature
- Operator
- Reference
---
<div>{{jsSidebar("Operators")}}</div>

Expand All @@ -23,7 +23,7 @@

<h2 id="Syntax">Syntax</h2>

<pre class="brush: js"><code><var>a</var> &amp; <var>b</var></code>
<pre class="brush: js">a &amp; b
</pre>

<h2 id="Description">Description</h2>
Expand Down Expand Up @@ -117,7 +117,7 @@ <h2 id="Browser_compatibility">Browser compatibility</h2>
<h2 id="See_also">See also</h2>

<ul>
<li><a href="/en-US/docs/Web/JavaScript/Guide/Expressions_and_Operators#Bitwise">Bitwise
<li><a href="/en-US/docs/Web/JavaScript/Guide/Expressions_and_Operators#bitwise">Bitwise
operators in the JS guide</a></li>
<li><a
href="/en-US/docs/Web/JavaScript/Reference/Operators/Bitwise_AND_assignment">Bitwise
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@
title: Bitwise AND assignment (&=)
slug: Web/JavaScript/Reference/Operators/Bitwise_AND_assignment
tags:
- Assignment operator
- JavaScript
- Language feature
- Operator
- Reference
- Assignment operator
- JavaScript
- Language feature
- Operator
- Reference
---
<div>{{jsSidebar("Operators")}}</div>

Expand Down Expand Up @@ -53,7 +53,7 @@ <h2 id="See_also">See also</h2>

<ul>
<li><a
href="/en-US/docs/Web/JavaScript/Guide/Expressions_and_Operators#Assignment">Assignment
href="/en-US/docs/Web/JavaScript/Guide/Expressions_and_Operators#assignment">Assignment
operators in the JS guide</a></li>
<li><a href="/en-US/docs/Web/JavaScript/Reference/Operators/Bitwise_AND">Bitwise AND
operator</a></li>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@
title: Bitwise NOT (~)
slug: Web/JavaScript/Reference/Operators/Bitwise_NOT
tags:
- Bitwise operator
- JavaScript
- Language feature
- Operator
- Reference
- Bitwise operator
- JavaScript
- Language feature
- Operator
- Reference
---
<div>{{jsSidebar("Operators")}}</div>

Expand All @@ -16,7 +16,7 @@

<h2 id="Syntax">Syntax</h2>

<pre class="brush: js"><code><var>~a</var></code>
<pre class="brush: js">~a
</pre>

<h2 id="Description">Description</h2>
Expand Down Expand Up @@ -97,6 +97,6 @@ <h2 id="Browser_compatibility">Browser compatibility</h2>
<h2 id="See_also">See also</h2>

<ul>
<li><a href="/en-US/docs/Web/JavaScript/Guide/Expressions_and_Operators#Bitwise">Bitwise
<li><a href="/en-US/docs/Web/JavaScript/Guide/Expressions_and_Operators#bitwise">Bitwise
operators in the JS guide</a></li>
</ul>
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@
title: Bitwise OR (|)
slug: Web/JavaScript/Reference/Operators/Bitwise_OR
tags:
- Bitwise operator
- JavaScript
- Language feature
- Operator
- Reference
- Bitwise operator
- JavaScript
- Language feature
- Operator
- Reference
---
<div>{{jsSidebar("Operators")}}</div>

Expand All @@ -23,7 +23,7 @@

<h2 id="Syntax">Syntax</h2>

<pre class="brush: js"><code><var>a</var> | <var>b</var></code>
<pre class="brush: js">a | b
</pre>

<h2 id="Description">Description</h2>
Expand Down Expand Up @@ -119,7 +119,7 @@ <h2 id="Browser_compatibility">Browser compatibility</h2>
<h2 id="See_also">See also</h2>

<ul>
<li><a href="/en-US/docs/Web/JavaScript/Guide/Expressions_and_Operators#Bitwise">Bitwise
<li><a href="/en-US/docs/Web/JavaScript/Guide/Expressions_and_Operators#bitwise">Bitwise
operators in the JS guide</a></li>
<li><a
href="/en-US/docs/Web/JavaScript/Reference/Operators/Bitwise_OR_assignment">Bitwise
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@
title: Bitwise OR assignment (|=)
slug: Web/JavaScript/Reference/Operators/Bitwise_OR_assignment
tags:
- Assignment operator
- JavaScript
- Language feature
- Operator
- Reference
- Assignment operator
- JavaScript
- Language feature
- Operator
- Reference
---
<div>{{jsSidebar("Operators")}}</div>

Expand Down Expand Up @@ -62,7 +62,7 @@ <h2 id="See_also">See also</h2>

<ul>
<li><a
href="/en-US/docs/Web/JavaScript/Guide/Expressions_and_Operators#Assignment">Assignment
href="/en-US/docs/Web/JavaScript/Guide/Expressions_and_Operators#assignment">Assignment
operators in the JS guide</a></li>
<li><a href="/en-US/docs/Web/JavaScript/Reference/Operators/Bitwise_OR">Bitwise OR
operator</a></li>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@
title: Bitwise XOR (^)
slug: Web/JavaScript/Reference/Operators/Bitwise_XOR
tags:
- Bitwise operator
- JavaScript
- Language feature
- Operator
- Reference
- Bitwise operator
- JavaScript
- Language feature
- Operator
- Reference
---
<div>{{jsSidebar("Operators")}}</div>

Expand All @@ -24,7 +24,7 @@

<h2 id="Syntax">Syntax</h2>

<pre class="brush: js"><code><var>a</var> ^ <var>b</var></code>
<pre class="brush: js">a ^ b
</pre>

<h2 id="Description">Description</h2>
Expand Down Expand Up @@ -124,7 +124,7 @@ <h2 id="Browser_compatibility">Browser compatibility</h2>
<h2 id="See_also">See also</h2>

<ul>
<li><a href="/en-US/docs/Web/JavaScript/Guide/Expressions_and_Operators#Bitwise">Bitwise
<li><a href="/en-US/docs/Web/JavaScript/Guide/Expressions_and_Operators#bitwise">Bitwise
operators in the JS guide</a></li>
<li><a
href="/en-US/docs/Web/JavaScript/Reference/Operators/Bitwise_XOR_assignment">Bitwise
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@
title: Bitwise XOR assignment (^=)
slug: Web/JavaScript/Reference/Operators/Bitwise_XOR_assignment
tags:
- Assignment operator
- JavaScript
- Language feature
- Operator
- Reference
- Assignment operator
- JavaScript
- Language feature
- Operator
- Reference
---
<div>{{jsSidebar("Operators")}}</div>

Expand Down Expand Up @@ -61,7 +61,7 @@ <h2 id="See_also">See also</h2>

<ul>
<li><a
href="/en-US/docs/Web/JavaScript/Guide/Expressions_and_Operators#Assignment">Assignment
href="/en-US/docs/Web/JavaScript/Guide/Expressions_and_Operators#assignment">Assignment
operators in the JS guide</a></li>
<li><a href="/en-US/docs/Web/JavaScript/Reference/Operators/Bitwise_XOR">Bitwise XOR
operator</a></li>
Expand Down
20 changes: 10 additions & 10 deletions files/en-us/web/javascript/reference/operators/delete/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@
title: delete operator
slug: Web/JavaScript/Reference/Operators/delete
tags:
- JavaScript
- Language feature
- Memory Management
- Object
- Operator
- Reference
- Release
- Unary
- delete
- JavaScript
- Language feature
- Memory Management
- Object
- Operator
- Reference
- Release
- Unary
- delete
---
<div>{{jsSidebar("Operators")}}</div>

Expand Down Expand Up @@ -49,7 +49,7 @@ <h3 id="Return_value">Return value</h3>

<h3 id="Exceptions">Exceptions</h3>

<p>Throws {{jsxref("TypeError")}} in {{jsxref("Functions_and_function_scope/Strict_mode",
<p>Throws {{jsxref("TypeError")}} in {{jsxref("Strict_mode",
"strict mode")}} if the property is an own non-configurable property.</p>

<h2 id="Description">Description</h2>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -365,7 +365,7 @@ <h4 id="For_of_iteration_and_destructuring">For of iteration and destructuring</

<h4 id="Computed_object_property_names_and_destructuring">Computed object property names and destructuring</h4>

<p>Computed property names, like on <a href="/en-US/docs/Web/JavaScript/Reference/Operators/Object_initializer#Computed_property_names">object literals</a>, can be used with destructuring.</p>
<p>Computed property names, like on <a href="/en-US/docs/Web/JavaScript/Reference/Operators/Object_initializer#computed_property_names">object literals</a>, can be used with destructuring.</p>

<pre class="brush: js">let key = 'z';
let {[key]: foo} = {z: 'bar'};
Expand Down Expand Up @@ -439,6 +439,6 @@ <h2 id="Browser_compatibility">Browser compatibility</h2>
<h2 id="See_also">See also</h2>

<ul>
<li><a href="/en-US/docs/Web/JavaScript/Reference/Operators/Assignment_Operators">Assignment operators</a></li>
<li><a href="/en-US/docs/Web/JavaScript/Reference/Operators#assignment_operators">Assignment operators</a></li>
<li><a href="https://hacks.mozilla.org/2015/05/es6-in-depth-destructuring/">"ES6 in Depth: Destructuring" on hacks.mozilla.org</a></li>
</ul>
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@
title: Division assignment (/=)
slug: Web/JavaScript/Reference/Operators/Division_assignment
tags:
- Assignment operator
- JavaScript
- Language feature
- Operator
- Reference
- Assignment operator
- JavaScript
- Language feature
- Operator
- Reference
---
<div>{{jsSidebar("Operators")}}</div>

Expand Down Expand Up @@ -61,7 +61,7 @@ <h2 id="See_also">See also</h2>

<ul>
<li><a
href="/en-US/docs/Web/JavaScript/Guide/Expressions_and_Operators#Assignment">Assignment
href="/en-US/docs/Web/JavaScript/Guide/Expressions_and_Operators#assignment">Assignment
operators in the JS guide</a></li>
<li><a href="/en-US/docs/Web/JavaScript/Reference/Operators/Division">Division
operator</a></li>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@
title: Exponentiation (**)
slug: Web/JavaScript/Reference/Operators/Exponentiation
tags:
- JavaScript
- Language feature
- Operator
- Reference
- JavaScript
- Language feature
- Operator
- Reference
---
<div>{{jsSidebar("Operators")}}</div>

Expand Down Expand Up @@ -46,7 +46,7 @@ <h2 id="Description">Description</h2>

<p>Note that some programming languages use the caret symbol <kbd>^</kbd> for
exponentiation, but JavaScript uses that symbol for the <a
href="/en-US/docs/Web/JavaScript/Reference/Operators/Bitwise_Operators#Bitwise_XOR">bitwise
href="/en-US/docs/Web/JavaScript/Reference/Operators#bitwise_xor">bitwise
logical XOR operator</a>.</p>

<h2 id="Examples">Examples</h2>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@
title: Exponentiation assignment (**=)
slug: Web/JavaScript/Reference/Operators/Exponentiation_assignment
tags:
- Assignment operator
- JavaScript
- Language feature
- Operator
- Reference
- Assignment operator
- JavaScript
- Language feature
- Operator
- Reference
---
<div>{{jsSidebar("Operators")}}</div>

Expand Down Expand Up @@ -53,7 +53,7 @@ <h2 id="See_also">See also</h2>

<ul>
<li><a
href="/en-US/docs/Web/JavaScript/Guide/Expressions_and_Operators#Assignment">Assignment
href="/en-US/docs/Web/JavaScript/Guide/Expressions_and_Operators#assignment">Assignment
operators in the JS guide</a></li>
<li><a
href="/en-US/docs/Web/JavaScript/Reference/Operators/Exponentiation">Exponentiation
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@
title: Function expression
slug: Web/JavaScript/Reference/Operators/function
tags:
- Function
- JavaScript
- Language feature
- Operator
- Primary Expressions
- Function
- JavaScript
- Language feature
- Operator
- Primary Expressions
---
<div>{{jsSidebar("Operators")}}</div>

Expand Down Expand Up @@ -170,8 +170,8 @@ <h2 id="Browser_compatibility">Browser compatibility</h2>
<h2 id="See_also">See also</h2>

<ul>
<li>{{jsxref("Arrow_functions", "Arrow functions", "", 1)}}</li>
<li>{{jsxref("Functions_and_function_scope", "Functions and function scope", "", 1)}}
<li>{{jsxref("Functions/Arrow_functions", "Arrow functions", "", 1)}}</li>
<li>{{jsxref("Functions", "Functions and function scope", "", 1)}}
</li>
<li>{{jsxref("Function")}}</li>
<li>{{jsxref("Statements/function", "function")}} statement</li>
Expand Down
Loading

0 comments on commit 51454f5

Please sign in to comment.