Mailbox Functions
POST
//this function takes a string key and a value of any type as arguments
mailbox.post(key, value)
mailbox.post("key1", 33)
mailbox.post("key1", "Hello World")
mailbox.post("key1", {"Hello" : "World"})POP
//this function takes a string key as an argument
mailbox.pop(key)
mailbox.pop("key1")
mailbox.pop("key1"){ Hello: 'World' }
Hello WorldCOUNT
DUMP
DELETE
Last updated
Was this helpful?
