JSFiddle - React, Tailwind, and code Playground

by pertrai1

JavaScript

function myTeam( name, position ) {
    this.name = name;
    this.position = position;
    this.player = function() {
    return (name + "plays the " + position);
    }
 }

var team1 = new myTeam("Michael Jordan", "Guard");
var team2 = new myTeam("Scottie Pippen", "Forward");

team1.player();
team2.player();