Open In App

Fabric.js camelize() Method

The camelize() method used to camelize a specified string.

Syntax:



camelize(string)

Parameters: This method accepts a parameter as mentioned above and described below:

Return Value: This method returns the camelized version of the string.



Example 1:




<!DOCTYPE html>
<html>
  
<head>
    <!-- Loading the FabricJS library -->
    <script src=
    </script>
</head>
  
<body>
    <script type="text/javascript">
        console.log(fabric.util.string.camelize("a-ab-abc"));
    </script>
</body>
  
</html>

Output:

aAbAbc

Example 2:




<!DOCTYPE html>
<html>
  
<head>
    <!-- Loading the FabricJS library -->
    <script src=
    </script>
</head>
  
<body>
    <script type="text/javascript">
        console.log(fabric.util.string.camelize("geeks-for-geeks"));
    </script>
</body>
  
</html>

Output:

geeksForGeeks

Reference: http://fabricjs.com/docs/fabric.util.string.html#.camelize


Article Tags :