When coding in Java, I utilize a live template called soutv
. This allows me to simply type myVar
and it automatically duplicates it resulting in:
System.out.println("myVar = " + myVar);
Is there a way for me to create a similar custom live template for Javascript code? The desired output would be:
console.log('myVar = ', myVar);