test

101

test -

let arr = [1, 2, 3];

arr.slice().reverse().forEach(x => console.log(x))

test -

template < class T, class Alloc = allocator<T> > class vector; // generic template

test -

value = 'asdasADB12210asd'
const regExp = new RegExp('/[a-zA-Z0-9]+/', 'g')
console.log(value.match(regExp))
 Run code snippetHide results

test -

/srv/users/SYSUSER/log/APPNAME/APPNAME_apache.error.log

test -

select column1 from some_table where column1 ~ '[^a-zA-Z0-9]'

test -

string strgroupids = "6";

test -

string strgroupids = "6";

test -

let arry = [2, 4, 6, 8, 10, 12, 14, 16];
let lastElement = arry[arry.length - 1];

console.log(lastElement);

//Output: 16

Comments

Submit
0 Comments