79190380

Date: 2024-11-14 20:54:40
Score: 0.5
Natty:
Report link

Try using substring like this:

const str="12345678";
const sub = str.substring(2, str.length-1); // "34567"
Reasons:
  • Low length (1):
  • Has code block (-0.5):
Posted by: mankowitz