match() :
match searches for a sepecified value in a string and is case sensitive!
var str = '1a2b3c4d5e6f7g8h9i0k';
var msg_d = str.match( //d/g, str );
var msg_D = str.match( //D/ );
match() :
match searches for a sepecified value in a string and is case sensitive!
var str = '1a2b3c4d5e6f7g8h9i0k';
var msg_d = str.match( //d/g, str );
var msg_D = str.match( //D/ );