Its simple question
I have one jquery arrary
arry = [ 'apple=1', 'apple=2', 'orange=5', 'orange=7', 'orange=9', 'guava=12', 'guava=11' ];
I want to convert above array into string
str = 'apple=1*2*~orange=5*7*9~guava=12*11';
Kindly help me in this...
(Actually I am looking for various interesting ways to do this)