Is there a way to create keys in alphabetical order that start with
aaaaa
and continue on to aaaab
, aaaac
, and so forth, properly generating the keys?
This is how I would like my JSON sample to be created:
var keygen={aaaaa,
aaaab,
aaaac .........aaaaz,aaaba ....}
This is my JavaScript code:
$scope.doKeyGen=function(lastValueInJSON)
{ // Do something
}