Hello, How to work with replace in bulk
I want to replace in bulk, and not to take up too much code
Look at how I do it:
const t1 = service.replace[
'SERVICE=1', 'test1',
'SERVICE=3', 'test2',
'SERVICE=2', 'test3'
]
// const t = service
// .replace('SERVICE=1', 'test1')
// .replace('SERVICE=2', 'test3')
// .replace('SERVICE=3', 'test2')