String

by Papillon

HTML

<pre id="console"></pre>

JavaScript

var s = 'abcdefg';

var r = s.slice(0, -2);

document.getElementById("console").textContent = r;