JSFiddle - React, Tailwind, and code Playground

by Emily Humphrey

JavaScript

function Bam(m){
    this.text = "explosion";
    this.modifier = m;
    this.message = alert(this.modifier+" "+this.text+"!");
}

var breakfast = new Bam("Breakfast time");
var firework = new Bam("Firework");

breakfast.message;
firework.message;