#!/usr/bin/js String.prototype.join = function(ary){ return ary.join(this); }; print([1, 'two', '三'].join("+")) print("+".join([1, 'two', '三']))