'JavaScript function parameter naming conventions [closed]

Is it common to use the accepted parameter naming conventions for a JavaScript function? For example:

function MyFunction(nParam1, tParam2, oParam3) {..}

where nParam1 is a number, tParam2 is text, and oParam3 is an object

It makes sense to do this, but there is a lot of code I still see that does not use this naming convention.



Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source