var words = {}, i, src = document.getElementById('text')
.innerText
.split(/[\s\.,:;!?]+/)
.map(function(el){ return el.toLowerCase()})
;
for(i=0; i<src.length; i++) {
word = src[i];
if( words.hasOwnProperty(word)) words[word]++;
else words[word] = 1;
}
var dupes = [];
for(i in words) if(words[i] > 1) dupes.push(i);
var p = document.createElement("p");
p.innerText = JSON.stringify(dupes);
document.body.appendChild(p);
<a>
- один из самых старых html тегов. Придуман он был еще до html, и используется в pdf, например.<a href="#section1">section1</a>
перемотает документ к тому месту, где находится якорь <a name="section1"></a>
dotnet new
dotnet restore
dotnet run
Почему все серверы ставят на Linux?Укажите на источник информации.
var i, collection = document.getElementsByClassName('hello');
for( i = 0; i < collection.length; i++) {
collection[i].addEventListener('click', onClick);
}
function onClick() {
var i, index = -1;
for(var i=0; i < collection.length; i++) {
if( this === collection[i]) {
index = i;
break;
}
}
if( !!~index) alert(index);
}
href="../main.html"
которая лежит ниже по директории- только это называется выше, а не ниже.