#SwikDB
- A database Key/value characteristics:
- Facility
- Uses
Javascript
- All in one executable
- Simplicity (this does not mean it is not powerful)
- Gets the specified key if it does not return null
- Gets all keys and values as an array of objects.
- Gets the first key and values that meet the established logic.
- Gets all keys and values that comply with the established logic.
- Change the value of the key, always returns undefined
- Deletes the specified key, if deleted it returns true, but the case otherwise returns false
db.set("isGood", true);
db.get("isGood");
db.Remove("isGood");
db.set("a", 1);
db.set("b", 2);
db.removeIf((e) => e.key.key == "b");