JavaScript-tehtävä


Sisällysluettelo

    Näytä sisällysluettelo


JavaScript-tehtäväoperaattorit

Osoitusoperaattorit antavat arvoja JavaScript-muuttujille.

Operator Example Same As
= x = y x = y
+= x += y x = x + y
-= x -= y x = x - y
*= x *= y x = x * y
/= x /= y x = x / y
%= x %= y x = x % y
**= x **= y x = x ** y

Vuoromääräysoperaattorit

Operator Example Same As
<<= x <<= y x = x << y
>>= x >>= y x = x >> y
>>>= x >>>= y x = x >>> y

Bittikohtaiset osoitusoperaattorit

Operator Example Same As
&= x &= y x = x & y
^= x ^= y x = x ^ y
|= x |= y x = x | y

Loogiset osoitusoperaattorit

Operator Example Same As
&&= x &&= y x = x && (x = y)
||= x ||= y x = x || (x = y)
??= x ??= y x = x ?? (x = y)

Huomautus

Loogiset osoitusoperaattorit ovat ES2020


= Operaattori

Simple Assignment Operator määrittää muuttujalle arvon.

Yksinkertaisia esimerkkejä tehtävistä

let x = 10;

Kokeile itse →

<!DOCTYPE html>
<html>
<body>

<h1>JavaScript Assignments</h1>
<h2>Simple Assignment</h2>
<h3>The = Operator</h3>

<p id="demo"></p>

<script>
let x = 10;
document.getElementById("demo").innerHTML = "Value of x is: " + x;
</script>

</body>
</html>
let x = 10 + y;

Kokeile itse →

<!DOCTYPE html>
<html>
<body>

<h1>JavaScript Assignments</h1>
<h2>Simple Assignment</h2>
<h3>The = Operator</h3>

<p id="demo"></p>

<script>
let y = 50
let x = 10 + y;
document.getElementById("demo").innerHTML = "Value of x is: " + x;
</script>

</body>
</html>

+= Operaattori

Lisäyksen määritysoperaattori lisää arvon muuttujaan.

Esimerkkejä lisäystehtävistä

let x = 10;
x += 5;

Kokeile itse →

<!DOCTYPE html>
<html>
<body>

<h1>JavaScript Assignments</h1>
<h2>Addition Assignment</h2>
<h3>The += Operator</h3>

<p id="demo"></p>

<script>
let x = 10;
x += 5;
document.getElementById("demo").innerHTML = "Value of x is: " + x;
</script>

</body>
</html>
let text = "Hello";
text += " World";

Kokeile itse →

<!DOCTYPE html>
<html>
<body>

<h1>JavaScript Assignments</h1>
<h2>Addition Assignment</h2>
<h3>The += Operator</h3>

<p id="demo"></p>

<script>
let text = "Hello";
text += " World";
document.getElementById("demo").innerHTML = text;
</script>

</body>
</html>

-= Operaattori

Vähennysmäärityksen operaattori vähentää arvon muuttujasta.

Vähennystehtävän esimerkki

let x = 10;
x -= 5;

Kokeile itse →

<!DOCTYPE html>
<html>
<body>

<h1>JavaScript Assignments</h1>
<h2>Subtraction Assignment</h2>
<h3>The -= Operator</h3>

<p id="demo"></p>

<script>
let x = 10;
x -= 5;
document.getElementById("demo").innerHTML = "Value of x is: " + x;
</script>

</body>
</html>

*= Operaattori

Kertomääritysoperaattori kertoo muuttujan.

Esimerkki kertolaskutehtävästä

let x = 10;
x *= 5;

Kokeile itse →

<!DOCTYPE html>
<html>
<body>

<h1>JavaScript Assignments</h1>
<h2>Multiplication Assignment</h2>
<h3>The *= Operator</h3>

<p id="demo"></p>

<script>
let x = 10;
x *= 5;
document.getElementById("demo").innerHTML = "Value of x is: " + x;
</script>

</body>
</html>

**= Operaattori

Exponentiointioperaattori nostaa muuttujan operandin potenssiin.

Esimerkki eksponentioinnista

let x = 10;
x **= 5;

Kokeile itse →

<!DOCTYPE html>
<html>
<body>

<h1>JavaScript Assignments</h1>
<h2>Exponentiation Assignment</h2>
<h3>The **= Operator</h3>

<p id="demo"></p>

<script>
let x = 10;
x **= 5;
document.getElementById("demo").innerHTML = "Value of x is: " + x;
</script>

</body>
</html>

/= Operaattori

Divisioonan määritysoperaattori jakaa muuttujan.

Esimerkki divisioonan kohdistamisesta

let x = 10;
x /= 5;

Kokeile itse →

<!DOCTYPE html>
<html>
<body>

<h1>JavaScript Assignments</h1>
<h2>Division Assignment</h2>
<h3>The /= Operator</h3>

<p id="demo"></p>

<script>
let x = 10;
x /= 5;
document.getElementById("demo").innerHTML = x;
</script>

</body>
</html>

%= Operaattori

Jäljellä olevan osuuden operaattori määrittää jäännöksen muuttujalle.

Jäljelle jääneiden määräysesimerkki

let x = 10;
x %= 5;

Kokeile itse →

<!DOCTYPE html>
<html>
<body>

<h1>JavaScript Assignments</h1>
<h2>Remainder Assignment</h2>
<h3>The %= Operator</h3>

<p id="demo"></p>

<script>
let x = 10;
x %= 5;
document.getElementById("demo").innerHTML = "Value of x is: " + x;
</script>

</body>
</html>


<<= Operaattori

Vasen Shift Assignment -operaattori siirtää muuttujaa vasemmalle.

Esimerkki vasemman vaihdon kohdistamisesta

let x = -100;
x <<= 5;

Kokeile itse →

<!DOCTYPE html>
<html>
<body>

<h1>JavaScript Assignments</h1>
<h2>Left Shift Assignment</h2>
<h3>The &lt;&lt;= Operator</h3>

<p id="demo"></p>

<script>
let x = -100;
x <<= 5;
document.getElementById("demo").innerHTML = "Value of x is: " + x;
</script>

</body>
</html>

>>= Operaattori

Oikea vaihtotehtävä siirtää muuttujaa oikealle (allekirjoitettu).

Esimerkki oikean vuoron määrittämisestä

let x = -100;
x >>= 5;

Kokeile itse →

<!DOCTYPE html>
<html>
<body>

<h1>JavaScript Assignments</h1>
<h2>Right Shift Assignment</h2>
<h3>The &gt;&gt;= Operator</h3>

<p id="demo"></p>

<script>
let x = -100;
x >>= 5;
document.getElementById("demo").innerHTML = "Value of x is: " + x;
</script>

</body>
</html>

>>>= Operaattori

Allekirjoittamaton oikea siirto -operaattori siirtää muuttujan oikealle (allekirjoittamaton).

Allekirjoittamaton oikean vuoron määritysesimerkki

let x = -100;
x >>>= 5;

Kokeile itse →

<!DOCTYPE html>
<html>
<body>

<h1>JavaScript Assignments</h1>
<h2>Right Shift Assignment</h2>
<h3>The &gt;&gt;&gt;= Operator</h3>

<p id="demo"></p>

<script>
let x = -100;
x >>>= 5;
document.getElementById("demo").innerHTML = "Value of x is: " + x;
</script>

</body>
</html>

&= Operaattori

Bittikohtainen AND-osoitusoperaattori tekee bittikohtaisen AND-operaation kahdelle operandille ja määrittää tuloksen muuttujalle.

Bittikohtainen AND osoitusesimerkki

let x = 10;
x &= 5;

Kokeile itse →

<!DOCTYPE html>
<html>
<body>

<h1>JavaScript Assignments</h1>
<h2>Bitwise AND Assignment</h2>
<h3>The &amp;= Operator</h3>

<p id="demo"></p>

<script>
let x = 100;
x &= 5;
document.getElementById("demo").innerHTML = "Value of x is: " + x;
</script>

</body>
</html>

|= Operaattori

Bittikohtainen TAI -määritysoperaattori tekee bittikohtaisen TAI -operaation kahdelle operandille ja määrittää tuloksen muuttujalle.

Bittikohtainen TAI -esimerkki

let x = 10;
x |= 5;

Kokeile itse →

<!DOCTYPE html>
<html>
<body>

<h1>JavaScript Assignments</h1>
<h2>Bitwise OR Assignment</h2>
<h3>The |= Operator</h3>

<p id="demo"></p>

<script>
let x = 100;
x |= 5;
document.getElementById("demo").innerHTML = "Value of x is: " + x;
</script>

</body>
</html>

^= Operaattori

Bittinen XOR-määritysoperaattori tekee bittikohtaisen XOR-operaation kahdelle operandille ja määrittää tuloksen muuttujalle.

Bittikohtainen XOR-osoitusesimerkki

let x = 10;
x ^= 5;

Kokeile itse →

<!DOCTYPE html>
<html>
<body>

<h1>JavaScript Assignments</h1>
<h2>Bitwise XOR Assignment</h2>
<h3>The ^= Operator</h3>

<p id="demo"></p>

<script>
let x = 100;
x ^= 5;
document.getElementById("demo").innerHTML = "Value of x is: " + x;
</script>

</body>
</html>

&&= Operaattori

Looginen JA-määritysoperaattori on käytössä kahden arvon välissä.

Jos ensimmäinen arvo on tosi, toinen arvo määritetään.

Looginen JA Tehtäväesimerkki

let x = 10;
x &&= 5;

Kokeile itse →

<!DOCTYPE html>
<html>
<body>

<h1>JavaScript Assignments</h1>
<h2>Logical AND Assignment</h2>
<h3>The &amp;&amp;= Operator</h3>
<p>If the first value is true, the second value is assigned.</p>

<p id="demo"></p>

<script>
let x = 100;
x &&= 5;
document.getElementById("demo").innerHTML = "Value of x is: " + x;
</script>

</body>
</html>

Operaattori &&= on ES2020-ominaisuus.


||= Operaattori

Looginen TAI -määritysoperaattori on kahden arvon välissä.

Jos ensimmäinen arvo on epätosi, toinen arvo määritetään.

Looginen TAI -esimerkki

let x = 10;
x ||= 5;

Kokeile itse →

<!DOCTYPE html>
<html>
<body>

<h1>JavaScript Assignments</h1>
<h2>Logical OR Assignment</h2>
<h3>The ||= Operator</h3>

<p>If the first value is false, the second value is assigned:</p>
<p id="demo"></p>

<script>
let x = undefined;
x ||= 5;
document.getElementById("demo").innerHTML = "Value of x is: " + x;
</script>

</body>
</html>

||=-operaattori on ES2020-ominaisuus.


??= Operaattori

Nullish coalescing assignment -operaattoria käytetään kahden arvon välissä.

Jos ensimmäinen arvo on määrittelemätön tai nolla, toinen arvo määritetään.

Nullish Coalescing Assignment -esimerkki

let x;
x ??= 5;

Kokeile itse →

<!DOCTYPE html>
<html>
<body>

<h1>JavaScript Assignments</h1>
<h2>The ??= Operator</h2>
<p>The ??= operator is used between two values. If the first value is undefined or null, the second value is assigned.</p>

<p id="demo"></p>

<script>
let x;
document.getElementById("demo").innerHTML = x ??= 5; 
</script>

</body>
</html>

Operaattori ??= on ES2020-ominaisuus.