Tag: javascript
Preloading images is useful when you like to access the images without delay when needed. For example, on mouse-over events over some buttons, the images has to be changed …
December 30, 2012
algorithms, brute force, implementation, javascript, math, programming languages, python, string, tools / utilities, tricks, vbscript
In , the base 62 number conversion to base 10 is implemented. To extend the conversion to arbitrary bases, we can use base 10 as the intermediate base, i.e. …
Base62, like Base10 (decimal), Base16 (hexadecimal), is a number system. Base62 uses 62 possible ASCII letters, 0 – 9, a – z and A – Z, therefore it is often …
In Javascript, functions are objects. Therefore you can define objects by using functions like the following. function Person(name, age) { this.name = name; this.age = age; } var Jack …
If you are familiar with the following screen, you are probably old enough LOL 😉 The following was used by TV Programme to indicate that ‘currently not available’, in …