A
Size: a a a
A
LK
AK
AS
ИМ
NM
ИМ
BI
regex/xpathАН
s=["soo", "xum", "voo", "soo"];
x=s.map(function(ro){return ro[0].toUpperCase()+ro.slice(1)})
console.log(x)NP
V
ИМ
AS
V
s=["soo", "xum", "voo", "soo"];
x=s.map(function(ro){return ro[0].toUpperCase()+ro.slice(1)})
console.log(x)АН
BI
P

V
function formatDateTime(d) {
const dateOptions = {
year: 'numeric',
month: 'long',
day: 'numeric',
hour: 'numeric',
minute: 'numeric',
};
const formattedDate = new Intl.DateTimeFormat('en-GB', dateOptions).format(d)
const [time, date] = formattedDate.split(',');
return `${date}; ${time}`;
}
formatDateTime(new Date())P
function formatDateTime(d) {
const dateOptions = {
year: 'numeric',
month: 'long',
day: 'numeric',
hour: 'numeric',
minute: 'numeric',
};
const formattedDate = new Intl.DateTimeFormat('en-GB', dateOptions).format(d)
const [time, date] = formattedDate.split(',');
return `${date}; ${time}`;
}
formatDateTime(new Date())АИ
