busillis Posted March 29, 2009 Share Posted March 29, 2009 Is there a quick way to insert before, i.e.: x = "abc" += "zyz"; output x = "zyzabc"; ? Link to comment https://forums.phpfreaks.com/topic/151598-insert-at-top-rather-than-tail/ Share on other sites More sharing options...
corbin Posted March 29, 2009 Share Posted March 29, 2009 var x = "abc"; var y = "def"; x = y + x; Link to comment https://forums.phpfreaks.com/topic/151598-insert-at-top-rather-than-tail/#findComment-796266 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.