Symbol.split JavaScript

The JavaScript Symbol.split property splits a part of the string from the indices that match the specified regular expression. Syntax: Symbol.split(string) Parameters: string: It represents the string. Returns: It returns a string that is split from the specified expression. Example 1: <!DOCTYPE html> <html> <body> <script> class obj { constructor(a) { this.a = a; } … Read more