What's important to understand about readBracketedList() is that it's
a function that is defined for the string prototype and thus can be
run against any string type variable, like so...

theOutputArray = someString.readBracketedList();

So, you don't use it like a function where you feed the string that
you want to convert as a parameter. The following would therefore be
wrong...

theOutputArray = readBracketedList(myString);

...since the global window object does not have a readBracketedList()
function defined... only the String prototype does, and so all
instances of type string inherit this function.

Cheers, Tobias.

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To post to this group, send email to tiddlywiki@googlegroups.com.
To unsubscribe from this group, send email to 
tiddlywiki+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/tiddlywiki?hl=en.

Reply via email to