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"; ? Quote Link to comment 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; Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.