When I assign integer value to localStorage item
JavaScript
x
2
1
localStorage.setItem('a',1)
2
and check its type
JavaScript
1
3
1
typeof(localStorage.a)
2
"string"
3
it returns string, I can typecast it to int for my use
JavaScript
1
2
1
parseInt(localStorage.a)
2
My question is it possible to store integer value inside localStorage as I can do for Javascript objects without typecasting?
JavaScript
1
5
1
a={};
2
a.number=1;
3
typeof(a.number)
4
"number"
5
Advertisement
Answer
My question is it possible to store integer value inside localStorage as I can do for Javascript objects without typecasting?
No.
Storage objects are simple key-value stores, similar to objects, but they stay intact through page loads. The keys can be strings or integers, but the values are always strings. [source]