VOOZH about

URL: https://www.geeksforgeeks.org/javascript/javascript-symbol-toprimitive-property/

⇱ JavaScript Symbol toPrimitive Property - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

JavaScript Symbol toPrimitive Property

Last Updated : 23 Jul, 2025

In Javascript, by the use of the Symbol.toPrimitive Property (used as a function value), one can convert an object to its corresponding primitive value.To call the function , a string argument called hint is passed. The hint argument specifies the preferred return type of the resultant primitive value. The hint argument can take  "number", "string", and "default" as its values.

Example:

Output:

0
String
Default

Explanation: In the above example, depending upon the type of hint passed in the arguments, we obtain the desired output.

We have a complete list of Javascript Symbols methods, to check those please go through this JavaScript Symbol Complete Reference article.

We have a Cheat Sheet on Javascript where we covered all the important topics of Javascript to check those please go through  

Comment