79090130

Date: 2024-10-15 13:23:08
Score: 1
Natty:
Report link

Use the key, value;

var o = {a:1, b:2}
var s = "";
for (r in o) {
    s += r + ":" + o[r] + ";";
}

Result: s = a:1;b:2;

Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Alexandre Crivellaro