JSFiddle - React, Tailwind, and code Playground

by nickywaites

JavaScript

class Walking {
	constructor(name) {
  	this.name = name;
  }
  
  walk() {
  	console.log(`learning to walk ${this.name}`);
  }

}

let toast = new Walking('test');
toast.walk();