I have one javascript js file that writes out a calendar. Right now I'm just using the regular string concatenation.
I wanted to use a more efficient process, so I found a nice js StringBuilder class.
How would I call or include this separate class in another js file in an existing js file? Both of these files reside in the same directory.
I wanted to use a more efficient process, so I found a nice js StringBuilder class.
How would I call or include this separate class in another js file in an existing js file? Both of these files reside in the same directory.