Suggest an editImprove this articleRefine the answer for “How to get the current value of a signal?”. Your changes go to moderation before they’re published.Approval requiredContentWhat you’re changing🇺🇸EN🇺🇦UAPreviewTitle (EN)Short answer (EN)**The current value of a signal** is obtained by calling it as a function: `counter()`. If `counter = signal(0)`, then `counter()` returns `0`. **Key point:** a signal is read by calling it, not by accessing a property.Shown above the full answer for quick recall.Answer (EN)ImageThe current value of a signal is obtained by **calling it as a function**: ```ts const value = counter(); ``` If `counter = signal(0)`, then `counter()` returns `0`.For the reviewerNote to the moderator (optional)Visible only to the moderator. Helps review go faster.