Guest User

Untitled

a guest
Jan 21st, 2019
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. class Node{
  2. constructor(value) {
  3. this.value = value;
  4. this.edges = [];
  5. }
  6.  
  7. addEdge(toNode) {
  8. this.edges.push(toNode);
  9. toNode.edges.push(this);
  10. return this;
  11. }
  12. }
Add Comment
Please, Sign In to add comment