'hasOwnProperty()' Syntax, Parameters and Note : hasOwnProperty « Javascript Methods « JavaScript Reference

'hasOwnProperty()' Syntax, Parameters and Note

Note:

Has your own property. 
Returns true or false.
    
Syntax:
    
objectName.hasOwnProperty(param1)

Parameters:
    param1   Required; the property name.

    

      
      








Related examples in the same category

1.'hasOwnProperty()' Example
2.'hasOwnProperty()' is applied to