From aa959d49c0f1801e3625bc2e4f3d3713acc1e931 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stefan=20Feje=C5=A1?= Date: Sat, 1 Sep 2018 14:33:21 +0200 Subject: [PATCH] add mutable-value --- glossary/Mutabe-value.md | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 glossary/Mutabe-value.md diff --git a/glossary/Mutabe-value.md b/glossary/Mutabe-value.md new file mode 100644 index 000000000..16624abf6 --- /dev/null +++ b/glossary/Mutabe-value.md @@ -0,0 +1,7 @@ +### Mutable value + +Mutable value is a type of variable that can be changed once created. + +Objects are mutable as their state can be modified after they are created. + +Primitive values are not mutable as we perform reassignment once we change them.