-
Notifications
You must be signed in to change notification settings - Fork 0
Noodle.chars
github-actions[bot] edited this page Sep 30, 2024
·
2 revisions
list of characters in the noodle
type: Array
const { Noodle } = require('stews');
let str = new Noodle("abc 123");
console.log(str.chars); |
[ "a", "b", "c", " ", "1", "2", "3" ] |