
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Where are JavaScript Variables Stored
Like many other programming languages, JavaScript has variables. Variables can be thought of as named containers. You can place data into these containers and then refer to the data simply by naming the container.
JavaScript variables get stored in the memory of the browser process. The following ways can work for storing variables:
- The variables which you declare in your JavaScript code gets saved in the memory of the browser process.
- Cookies can also store variables, they are often saved on your hard disk;
Advertisements