```js > var test = 2; undefined > test.toString(2); '10' > test.toString = function(){return '1xxx'}; [Function] > test.toString(); '2' ```