Skip to content

2704-to-be-or-not-to-be

DevGod
DevGod
Vtuber
/**
* @param {string} val
* @return {Object}
*/
var expect = function(val) {
let n = val
return {
toBe: function(newVal){
if (newVal !== n) {
throw new Error("Not Equal")
} else return true
},
notToBe: function(newVal){
if (newVal === n) {
throw new Error("Equal")
} else return true
}
}
};
/**
* expect(5).toBe(5); // true
* expect(5).notToBe(5); // throws "Equal"
*/