UNPKG

phpjs

Version:

php.js offers community built php functions in javascript

9 lines (8 loc) 316 B
function join(glue, pieces) { // discuss at: http://phpjs.org/functions/join/ // original by: Kevin van Zonneveld (http://kevin.vanzonneveld.net) // depends on: implode // example 1: join(' ', ['Kevin', 'van', 'Zonneveld']); // returns 1: 'Kevin van Zonneveld' return this.implode(glue, pieces); }