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

'substr()' Syntax Parameters and Note

Note:

Get string's sub string.
    
Syntax:
    
stringName.substr(param1, param2)

Parameters:
    param1   Required; the character number.
    param2   Required; the length of the subset string. 

    

      
      








Related examples in the same category

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