Skip to content

Commit 9613873

Browse files
authored
Update README.md
1 parent f074d94 commit 9613873

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

README.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ If no parameter was provided when object was created, you'll need to include the
4141
writeJSON.WriteToFile(file);
4242
```
4343
---
44-
### Reading and writing JSON variables
44+
### Reading, writing, and removing JSON variables
4545
To read a specific variable (`GetBool`, `GetInt`, `GetFloat`, `GetString`):
4646
```
4747
myJSON.GetString("myStr");
@@ -54,6 +54,10 @@ To add a variable to the JSON (`AddBool`, `AddInt`, `AddFloat`, `AddString`):
5454
```
5555
myJSON.AddFloat("myFloat", 24.68);
5656
```
57+
To remove a variable from the JSON (`RemoveBool`, `RemoveInt`, `RemoveFloat`, `RemoveString`)
58+
```
59+
myJSON.RemoveBool("myBool");
60+
```
5761
---
5862
</details>
5963

0 commit comments

Comments
 (0)