I'm studying nodejs, and doing some testing with some native modules of the node I came across the following statement.
To print free memory on your computer:
const os = require('os');
console.log('Memoria Livre: ', os.freemem());
This comma separating the string from the constant is concatenation, correct?
If yes, what is the difference between using comma and / or +
console.log('Memoria Livre: ', os.freemem());
and / or
console.log('Memoria Livre: ' + os.freemem());
Are there any other means of concatenation in js?