
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Constructor to Create String Object in JavaScript
To create a String object in JavaScript, use string.constructor. A constructor returns a reference to the string function that created the instance's prototype.
Example
You can try to run the following code to create a String object with the constructor −
<html> <head> <title>JavaScript String constructor Method</title> </head> <body> <script> var str = new String( "This is string" ); document.write("str.constructor is:" + str.constructor); </script> </body> </html>
Advertisements