Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 
avatar of Yanb

Yanb

Yanb has asked 3 questions and find answers to 0 problems.

Stats

15
EtPoint
0
Vote count
3
questions
0
answers

About

class Me extends Person {
    function getHobbies()
        return ['Javascript', 'HTML', 'Python', 'Java'];

    function program()
        throw new Error('Laziness Error');

    function stackOverflow() {
        console.log('Answering questions...')
        program();
    }
}