• Jobs
  • About Us
  • professionals
    • Home
    • Jobs
    • Courses and challenges
  • business
    • Home
    • Post vacancy
    • Our process
    • Pricing
    • Assessments
    • Payroll
    • Blog
    • Sales
    • Salary Calculator

0

271
Views
Prevent the variable's value from being written to the `body' of the page

When we write the code below in the Firefox web browser bookmark, the result 3 is written to the body of the current page:

javascript:
var x = 2;
x += 1;

To avoid this, it is possible to add var before a new variable called y that takes the value of x:

javascript:
var x = 2;
var y = x += 1;

My code has dozens of variables and it wouldn't be practical to have to create other variables just to avoid the problem.

How can I prevent variable values from being written to the document.body of the page?

about 3 years ago · Juan Pablo Isaza
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Our process Sales
Legal
Terms and conditions Privacy policy
© 2025 PeakU Inc. All Rights Reserved.

Andres GPT

Recommend me some offers
I have an error