{
!try to figure this out without reading the errors from observable
function atomBombCode(activate)
{
if(activate===true)
return null
function theft()
{
var laptop = {
secret: "encryptedSecretsHere",
password: function(pass) {if(pass==="Fluffykins21") return "un" + this.secret}
}
var errorBob = bob
var sovietThief = laptop
return sovietThief
}
var americanSpy = sovietThief
var happyTheClown = laptop
return [laptop,theft(),americanSpy, sovietThief]
}
var thatBritishDude = americanSpy
var bobbyNugs = atomBombCode(true)[1]
var monsieurSam = atomBombCode(false)[0]
var ivanTheTerrible = theft()
var falsyFakeFriend = atomBombCode(false)[1]
var theAmerican = atomBombCode(true)[2]
var theMartian = atomBombCode(false)[4]
var ussr = falsyFakeFriend
var whatsTheSecret = undefined
return whatsTheSecret
}