How does the regular expression should be like for 0.(0)?

I have to check the string if it is like as 0.(0).
I am going to use regex for checking that string, but I am not good at regex.
I used regex pattern like below, but it doesn’t work.

const pattern = /0.([0])/

How does the regex should be like?