JSFiddle - React, Tailwind, and code Playground
by donce17
JavaScript
function test() {
var thisSession = {
amt: "10.00",
email: "[email protected]",
merchant_id: "sam",
mobileNo: "9874563210",
orderID: "123456",
passkey: "1234"
}
//console.log(thisSession);
if (!("merchant_id" in thisSession)) {
alert('nooo')
} else {
alert("yeah");
}
}
test()