So I’m making a online PC sorta thing using JS and HTML, and I came across the issue of JSON.stringify(System)
for storing things in localStorage
not stringifying it properly, where System
is a class with sub-classes within (class File extends System
, etc.), so I found the solution of using System.toString
. Is there a reverse toString method I can use to set my System
class to what I keep in localStorage?
I will update y’all if I find a solution.
(Note, I have checked all of the similar questions, and they are either using things that my measly little pea-sized brain cannot understand, or they aren’t what I’m looking for)