toString vs valueOf methods | String Object In JavaScript

🎁 Join my channel to get access to perks:
https://www.youtube.com/channel/UC8n8ftV94ZU_DJLOLtrpORA/join

🧡 Hello All JavaScript Lovers Outhere!

Today you’re going to learn about the String Object In JavaScript.

This tutorial is a series of videos, in each video we will discuss a method (or more) of the String Object in JavaScript.

In today’s video, you’re going to learn about the toString, and valueOf methods.

The toString() method of a string object returns a string representing the specified string.

The valueOf() method returns the primitive value of a String object.

🟢🟠 The string.toString().
🔷 Syntax :
toString()

🟢🟠 The string.valueOf ().
🔷 Syntax :
valueOf ()

toString :
The String object overrides the toString() method of the Object object; it does not inherit Object.prototype.toString(). For String objects, the toString() method returns a string representation of the object and is the same as the String.prototype.valueOf() method.

valueOf:
The valueOf() method of String returns the primitive value of a String object as a string data type. This value is equivalent to String.prototype.toString().

This method is usually called internally by JavaScript and not explicitly in code.

🌍 Social Media Links.
◾ Facebook : https://www.facebook.com/Code.Explained.Official
◾ Twitter : https://twitter.com/code_explained
◾ Instagram : https://www.instagram.com/Code.Explained.Official/
◾ GitHub : https://github.com/CodeExplainedRepo

💲 Suppport the Channel
Paypal : https://paypal.me/CodeExplained
Buy Me a Coffee: https://www.buymeacoffee.com/CodeExplained

A Smarter Way to Learn JavaScript for Beginner

JavaScript for beginner|JavaScript for beginner

A Smarter Way to Learn JavaScript for Beginner

Before attempting to write JavaScript yourself, it’s worth investing in a book on the subject. This book, “A Smarter Way to Learn JavaScript,” was written by Mark Myers and is packed with useful information for a beginner. The book is 256 pages long and is structured into brief chapters. It also includes 20 free sample exercises. The author focuses on the language’s structure rather than working with objects or designs.

You May Also Like