▲ | truetraveller 5 days ago | |
The first thing I always do is define log. It's bonkers to use console.log() for js. a simple window.log=console.log. Secondly, in your example, no need to label the names. This is almost always understood by context. So, pretty manageable. e.g. in JS: log(`${longvarname}, ${secondvarname}`) |