Developement/Web
JavaScript variables with Hungarian Type Notation
highheat
2007. 3. 30. 17:13
Type | Prefix | Example |
Array | a | aValues |
Boolean | b | bFound |
Float (Number) | f | fValue |
Function | fn | fnMethod |
Integer (Number) | i | iValue |
Object | o | oType |
Regular Expression | re | rePattern |
String | s | sValue |
Variant (can be any type) | v | vValue |