JavaScript Operators
<!DOCTYPE html> <html> <body> <h2>Storing values</h2> <script> let score = 100; // store 100 in score let level = score; // copy the value of score into level score = 120; // reassign score to a new value console.log(score); // 120 console.log(level); // 100 (unaffected by the reassignment) </script> </body> </html>