79197123

Date: 2024-11-17 12:04:54
Score: 0.5
Natty:
Report link

As you're making use of template literals, you need to replace the ' with `.

const textOut = `This is what we know: ${textIn}.\nCreated on ${Date.now()}`;

Before template literals following method was used to concatenation.

const textOut = 'This is what we know: '+textIn+'.\nCreated on '+Date.now();
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Naeem Akhtar