Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

318
Views
What's the difference between `document.createTextNode` and `new Text()`?

Both create a new Text node. It seems that the only difference is the browser compatibility. Is there any other differences?

about 4 years ago · Santiago Gelvez
1 answers
Answer question

0

It would appear that, according to the DOM standard, there's almost no difference:

text = new Text([data = ""])

Returns a new Text node whose data is data. (link)

text = document . createTextNode(data)

Returns a Text node whose data is data. (link)

except for the fact that the argument is optional for the constructor, but required for createTextNode. (Omitting the argument for createTextNode will throw.)

new Text();
console.log('first line worked');
document.createTextNode(); // throws

about 4 years ago · Santiago Gelvez Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!