The camelize() method used to camelize a specified string.
Syntax:
camelize(string)
Parameters: This method accepts a parameter as mentioned above and described below:
- string: This parameter holds the string to camelize.
Return Value: This method returns the camelized version of the string.
Example 1:
<!DOCTYPE html>
<html>
<head>
<!-- Loading the FabricJS library -->
<script src=
"https://cdnjs.cloudflare.com/ajax/libs/fabric.js/3.6.2/fabric.min.js">
</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=
"https://cdnjs.cloudflare.com/ajax/libs/fabric.js/3.6.2/fabric.min.js">
</script>
</head>
<body>
<script type="text/javascript">
console.log(fabric.util.string.camelize("geeks-for-geeks"));
</script>
</body>
</html>
Output:
geeksForGeeksReference: https://fabricjs.com/docs/fabric.util.string.html#.camelize