4 lines
79 B
ActionScript
4 lines
79 B
ActionScript
function incrementString(str:String):String
|
|
{
|
|
return String(Number(str)+1);
|
|
}
|