Is there any simple way to multiply alphanumeric string in jQuery / JS?
e.g
var str = "ABC";
console.log( str * 5 ); // this will nerutn `Nan`
// where what i want is `ABCABCABCABCABC`
Any suggestion much appreciated.
|
Is there any simple way to multiply alphanumeric string in jQuery / JS? e.g
Any suggestion much appreciated. |
|||||||||||||||
|
|
I see the exact question here: Just add this to your code:
|
|||||||
|
|
Try extending the
so that you can do it like this:
|
|||
|
|
|
|||
|
|
|
This returns Nan because str is not a number. You should do like this :
With the function
|
|||
|
|
And then use .multi(5) on any string you want :) Like:
|
|||
|
|