Today's JavaScript coding challenge is to convert a given string in snake_case format to camelCase format.
Snake case strings have words separated by underscores, while camelCase strings have words joined together with each word starting with an uppercase letter.
Participants are required to write a function that performs the conversion and to test it against provided test cases.
This challenge is part of the Daily JavaScript Challenge series aiming to keep developers' programming skills sharp.