ArrayPrototype.toLocaleString(Object) Method

Definition

Creates a string representation of the specified object that concatenates the elements and separates them with a ListSeparator and a space.

This API supports the product infrastructure and is not intended to be used directly from your code.

public:
 static System::String ^ toLocaleString(System::Object ^ thisob);
[Microsoft.JScript.JSFunction(Microsoft.JScript.JSFunctionAttributeEnum.HasThisObject, Microsoft.JScript.JSBuiltin.Array_toLocaleString)]
public static string toLocaleString (object thisob);
[<Microsoft.JScript.JSFunction(Microsoft.JScript.JSFunctionAttributeEnum.HasThisObject, Microsoft.JScript.JSBuiltin.Array_toLocaleString)>]
static member toLocaleString : obj -> string
Public Shared Function toLocaleString (thisob As Object) As String

Parameters

thisob
Object

The object that this method is acting upon.

Returns

A string that concatenates the elements of thisob and separates them with a ListSeparator and a space.

Attributes

Applies to

See also