I am facing problem in jQuery that is automatically changes values of variables. Like following example.
graphB = some values;
var graphOption = graphB;
Now If I am changing values of "graphOption" then it will automatically changes values of "graphB".
I can not figure out what is the problem.