[docs] remove confusing assignment from stores tutorial (#6867)

Tutorial on writable stores contains unexplained and unused assignment
which might cause confusion.

Proper explanations on `unsubscribe` is in the next step of the tutorial.
pull/7738/head
gunggmee 5 years ago committed by GitHub
parent f49420656d
commit fcaf7a4375

@ -6,7 +6,7 @@
let count_value; let count_value;
const unsubscribe = count.subscribe(value => { count.subscribe(value => {
count_value = value; count_value = value;
}); });
</script> </script>

Loading…
Cancel
Save