Tag Archives: class

Javascript Character Classes

I have put together the beginnings of a javascript character class script. The idea was to create a testing platform and the build the character class handler at the same time. Starting off as a need to build a scanner/parser I was looking for some functions to give me IsDigit, IsAlpha, IsDigitAlpha and other similar functions.
Continue reading

Javascript Object Oriented Ideas

Good article on Javascript Object Oriented Ideas

If you are looking to do some “strange” things with javascript Object Oriented programming, then check out: this article. There is a lot of information on creating things like static functions, singletons, private/public functions and properties. These object oriented ideas are not 100% the same as in other languages but the results are as close to the real thing as you may need.