JSFiddle - React, Tailwind, and code Playground

by Jessie Lau

JavaScript

describe("About Objects", function () {

  describe("Properties", function () {
    var megalomaniac;

    beforeEach(function () {
       megalomaniac = {  mastermind: "Joker", henchwoman: "Harley" };
    });

    it("should confirm objects are collections of properties", function () {
      expect(megalomaniac.mastermind).toBe("Joker");
    });

    it("should confirm that properties are case sensitive", function () {
      expect(megalomaniac.henchwoman).toBe("Harley" );
      expect(megalomaniac.henchWoman).toBe(undefined); ???????????
    });
  });