JavaScript - Assignment Operators

Pubblicato il: 28 febbraio 2020
sul canale di: EdYoda
190
2

For more courses, visit: https://www.edyoda.com/

Hey guys, in this video we will learn about Assignment Operators in JavaScript.

Practice Problems:
================
Try to answer the following questions without executing the code in codepen. Post your answers in the comment section below. Also, try to explain why do you think your answer is correct. Best of Luck!!

Q.
With x = 0, which of the following statements will produce a value of 1?

1. x++;
2. x = x + 1;
3. x += 1;

Q.
With x = 1, which of the following statements will produce a value of 0?

1. x--;
2. x = x - 1;
3. x -= 1;

Q.
What will be the result of the following statement?

var num = 100;
num += 5 * 10 / 2;

Q.
What will be the result of the following statement?

var num = 100;
num *= 2 * 10 / 5;

Q.
What will be the result of the following statement?

var num = 100;
num /= 2 * 8 - 15;


Codepen URL: https://codepen.io/qaifikhan/pen/gNOXwg

Previous Video: https://www.edyoda.com/course/1496?ep...

My Twitter Handle: @qaifikhan


In questa pagina del sito puoi guardare il video online JavaScript - Assignment Operators della durata di ore minuti seconda in buona qualità , che l'utente ha caricato EdYoda 28 febbraio 2020, condividi il link con amici e conoscenti, su youtube questo video è già stato visto 190 volte e gli è piaciuto 2 spettatori. Buona visione!