ts-playground
    Preparing search index...
    • Join words into a single string with Lower Camel Case

      Parameters

      • words: string[]

      Returns string

      import { intoLowerCamelCase } from 'string'
      intoLowerCamelCase(['hello', 'world']) // => 'helloWorld'