const { hash, href } = window.location;
const urlc = href.replace(hash, '');
if (hash && decodeURIComponent(readCookie('commentadd')) === urlc) {
alert("Комментарий оставлен");
}
const { hash, href } = window.location;
if (hash && href.includes(decodeURIComponent(readCookie('commentadd')))) {
alert("Комментарий оставлен");
}
̲
– он делает предшествующий символ подчёркнутым.$image = new SVG('100mm','100mm');
$doc = $image->getDocument();
$square = new SVGLine('0mm', '0mm', '55mm', '55mm'); // x0 y0 x1 y1
$square->setStyle('stroke', '#FF0000'); //цвет
$doc->addChild($square);
$arc = new SVGPath('m 40,40 A 30,30,0,0,1,150,150');
$arc->setStyle('stroke', '#FF0000');
$doc->addChild($arc);
header('Content-Type: image/svg+xml');
echo $image;
function nextLexInPlace(arr) {
let i, a = -1, b = -1;
for( i = 0; i < arr.length-1; i++) if(arr[i] < arr[1+i]) a = i;
if( !~a) return; // no more permutations
for( i = a + 1; i < arr.length; i++) if(arr[a] < arr[i]) b = i;
swap(arr, a, b);
a++;
b = arr.length - 1;
while( a < b) swap(arr, a++, b--);
return true;
}
function swap( arr, a, b) {
let xx = arr[a];
arr[a] = arr[b];
arr[b] = xx;
}
function allMutations( source ) {
let result = [], arr = Array.from(String(source)).slice();
result.push( arr.sort().slice());
while( nextLexInPlace(arr)) result.push(arr.slice());
return result.join('..').replace(/,/g,'')
}
console.log(allMutations(112))
console.log(allMutations(1112))
console.log(allMutations(11122))
`assets/${gPREPROCESSOR}/main.{scss,less}`
~
, на клавиатуре. color : 'rgba(' + '255, 255, 255' + ',' + 0.4 + ')'
canvas
в другой цвет, либо в самом JS. var sred = [2,5,3,5];
function getSumm(arr){
let s = 0;
for(let i=0;i<arr.length;i++) s+=arr[i];
return s;
}
function getModifiedArray(arr){
while(getSumm(arr) / arr.length <= 4.9) arr.push(5);
return arr;
}
var modArray = getModifiedArray(sred);
console.log(modArray);
console.log(getSumm(modArray) / modArray.length);
let arr = [2, 5, 3, 5];
function test(arr) {
let N = arr.length;
if (N < 1) {
console.log("Error");
return;
}
let average = arr.reduce((sum, elem) => (sum + elem)) / N;
if (average <= 4.9) {
console.log("Push 5. New test");
arr.push(5);
test(arr);
} else {
console.log("OK. Average = " + average);
}
}
if(rad[i].src=="1.png"){
...
} else ...
В любом из вариантов всегда происходит условие для if, else просто игнорируется. В чём причина понять не могу
"1.png"
, а "http://www.полный-адрес/1.png"
function change(){
let rad = document.querySelectorAll('.red');
for(let i=0, len=rad.length; i<len; i++){
if(rad[i].src.split("/").pop()=="1.png"){
rad[i].src="2.png"
} else {
rad[i].src="1.png"
}
}
}