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

124
Views
js inheritance cant use super class unction with base class object

i am tying to implement basic inheritance, bellow is my min reproducible code, I want to call eat function in dev1 but It says that dev1 does not have eat function. i tried writing all oof it in HTML script tag

//parent class
        function Person(name, location) {
            this.name = name
            this.location = location

        }
// parent class function
        Person.prototype.eat = function () {
            document.write("i like sea food ")
        }
        
//child class
        function Developer(name, location, projects) {
            Person.call(this, name, location)
            this.projects = projects
        }
        
// object
        var dev1 = new Developer("abc", "xyz", ["aa", "bb"])




        
        dev1.eat()
        
about 4 years ago · Juan Pablo Isaza
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!