Friday, September 19, 2025
HomeLanguagesJavascriptJavaScript date.@@toPrimitive() Function

JavaScript date.@@toPrimitive() Function

The Javascript date.@@toPrimitive() function is an inbuilt function in JavaScript that is used to convert the date object into a primitive value. A number or string is known as a primitive value.

Syntax: 

Dateobj[Symbol.toPrimitive](hint);

Parameter: This function accepts a single parameter. Depending on the argument, the method can return either a string or a number.

Return Values: It returns the primitive value of the given date object.

The below examples illustrate the @@toPrimitive() function in JavaScript.

Example 1: When a hint is the default, [@@toPrimitive]() tries to call the toString method, and if the toString method does not exist it tries to call the valueOf method. 

javascript




<script>
    // Here a date has been assigned
    // while creating Date object
    var dateobj = new Date();
      
    // converting the date object to a primitive value
    var result = dateobj[Symbol.toPrimitive]("default")
      
    // Printing year
    console.log(result);
</script>


Output: 

Thu Sep 27 2018 12:49:02 GMT+0530 (India Standard Time)

Example 2: When a hint is a number, [@@toPrimitive]() tries to call the valueOf method and if the valueOf method does not exist, it calls the toString method.  

javascript




<script>
    // Here a date has been assigned
    // while creating Date object
    var dateobj = new Date();
      
    // converting the date object to a primitive value
    var result = dateobj[Symbol.toPrimitive]("number")
      
    // Printing year
    console.log(result);
</script>


Output: 

1538032776898

Example 3: When a hint is a string, [@@toPrimitive]() tries to call the toString method, and if the toString method does not exist it tries to call the valueOf method. 

javascript




<script>
    // Here a date has been assigned
    // while creating Date object
    var dateobj = new Date();
      
    // converting the date object to a primitive value
    var result = dateobj[Symbol.toPrimitive]("string")
      
    // Printing year
    console.log(result);
</script>


Output: 

Thu Sep 27 2018 12:50:04 GMT+0530 (India Standard Time)

Note: Output may vary as per the current date and time.

Errors and Exceptions: When a hint is anything other than “string”, “default” or”number”, [@@toPrimitive]() tries to call the toString method and if the toString method does not exist it tries to call the valueOf method, and if valueOf method is also not applicable then [@@toPrimitive]() throws a TypeError. 

Example: 

javascript




<script>
    // Here a date has been assigned
    // while creating Date object
    var dateobj = new Date();
      
    // converting the date object to a primitive value
    var result = dateobj[Symbol.toPrimitive](90)
      
    // Printing year
    console.log(result);
</script>


Output:  

TypeError: Symbol.toPrimitive: expected "string", "number", or "default", got number
Whether you’re preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape, neveropen Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we’ve already empowered, and we’re here to do the same for you. Don’t miss out – check it out now!
RELATED ARTICLES

Most Popular

Dominic
32301 POSTS0 COMMENTS
Milvus
84 POSTS0 COMMENTS
Nango Kala
6666 POSTS0 COMMENTS
Nicole Veronica
11840 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11898 POSTS0 COMMENTS
Shaida Kate Naidoo
6781 POSTS0 COMMENTS
Ted Musemwa
7056 POSTS0 COMMENTS
Thapelo Manthata
6739 POSTS0 COMMENTS
Umr Jansen
6744 POSTS0 COMMENTS