mirror of
https://github.com/voltrevo/ValueScript.git
synced 2026-01-13 15:38:06 -05:00
13 lines
302 B
TypeScript
13 lines
302 B
TypeScript
//! test_output([undefined,"🚀","","","","🍹","","","","a","b","c","£","","한","","","🎨","","","",undefined])
|
|
|
|
export default function () {
|
|
const str = "🚀🍹abc£한🎨";
|
|
let outputs = [];
|
|
|
|
for (let i = -1; i <= str.length; i++) {
|
|
outputs.push(str[i]);
|
|
}
|
|
|
|
return outputs;
|
|
}
|