High-quality Classes and Tutorials for All

Sabe is a derivative of the Spanish word saber which means to know.

Whether you are new or more experienced, you learn something new every day, and we aim to be a great place to do just that. With our high-quality classes and tutorials, we craft engaging and practical information so that you can learn how to master your craft.

Become a better developer!

Learn with Powerful Examples
	
    class Pet {
        constructor(name, weight, price) {
            this.name = name;
            this.weight = weight;
            this.price = price;
        }

        getInfo() {
            return "Hi, my name is " + this.name + ". I weigh " + this.weight + " pounds and cost $" + this.price + ".";
        }
    }

    var pet = new Pet("Fluffy", 20, 200);

    console.log(pet);
    console.log(pet.getInfo());
	
	
    Pet {
        name: "Fluffy",
        weight: 20,
        price: 200
    }
    Hi, my name is Fluffy. I weigh 20 pounds and cost $200.