تابعی ایجاد کنید که نام یک تابع به فرمت snake case را در ورودی می گیرد و آن را به camel case تبدیل می کند.
نمونه ورودی و خروجی
to_camel_case("hello_bkeb") ➞ helloBkeb
to_camel_case("is_modal_open") ➞ isModalOpen
to_camel_case("calculate") ➞ calculate
to_camel_case("hello_bkeb") ➞ helloBkeb
to_camel_case("is_modal_open") ➞ isModalOpen
to_camel_case("calculate") ➞ calculate
to_camel_case("get_color") ➞ getColor
نظرات