How to use the power of naming
Naming is very important in code.
And I note my rule about naming.
Don't use the functional name but use the name in real world
Below code is example
const userId = getUserId()
const result = insertRecordA(userId)
if(!result) {
...
bereu.hashnode.dev1 min read