ts-playground
    Preparing search index...
    • Join words into a single string with Upper Camel Case (Pascal Case)

      Parameters

      • words: string[]

      Returns string

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