Good day! Please tell me how a regular JS expression should look in order to remove a word from the comma?
For example, there is a line:
11, 22, 33, 44, 55 If you decide to delete 11, it turned out
22, 33, 44, 55 If 55, then:
11, 22, 33, 44 That the comma was not lost and there were no superfluous commas. Thank!