0

I am looking for a tool that will display all the values of my variables in a page all all times during execution.

PastFuture
  • 27
  • 1
  • 1
  • 4

1 Answers1

0

I think that you can just use an object to store your values:

let obj = { var1: 'val1'm var2: 'val2'}
    
for (let i of Object.keys(obj)) {
    console.log(obj[i])
}

Can you provide an example or screen shot on what are you trying to do?

  • For every variable that I use in my program, I want to see what the current value is as the program is running. It would be nice there was a single page output that displayed everything. – PastFuture Mar 30 '21 at 19:41