GithubHelp home page GithubHelp logo

classes_assignment's Introduction

Class Exercises

class Human { constructor(name, age) { this.name = name; this.age = age; }

ageOneYear() { this.age++ return You are now ${this.age} years old; }

eating() { return mmm, mmm, mmm, I'm love'n it } }

let newHu = new Human ('Michell', '25') console.log(newHu.age); console.log(newHu.ageOneYear()) console.log(newHu.eating())

class Vector { constructor(x, y) { this.x = x; this.y = y; }

plus(vec) { let addition = this.x + vec.x; let addition2 = this.y + vec.y; return x: ${addition} , y: ${addition2}; }

minus(vec) { let subtraction = this.y - vec.y; let subtraction2 = this.y - vec.y return x: ${subtraction} , y: ${subtraction2}; }

getLength (nums) { let length = Math.hypot(this.x,this.y) return length; } }

let v1 = new Vector (1, 2) let v2 = new Vector (2, 3) let v3 = new Vector (3, 4)

console.log(v1.plus(v2)) console.log(v1.minus(v2)) console.log(v3.getLength())

classes_assignment's People

Contributors

coreyladovsky avatar

Watchers

James Cloos avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.