5 lines
89 B
JavaScript
5 lines
89 B
JavaScript
"use strict";
|
|
|
|
var string = "foo\ud83d\udca9bar";
|
|
var match = string.match(/foo(.)bar/);
|