JSFiddle - React, Tailwind, and code Playground

by Chintan Upadhayay

HTML

<a href="#one" class="hash">One</a> 
<div>
    <p>some text</p>
</div>
<a href="#two" class="hash">Two</a> 
<div>
    <p>some text</p>
</div>
<a href="#three" class="hash">Three</a> 
<div>
    <p>some text</p>
</div>

CSS

div {
    height: 400px;
}

JavaScript

var Stringss = "Düsseldorf - Zentrum - Günnewig Uebachs";


let bits = Stringss.split("-");

console.log(bits);
console.log(bits.length-1);
var  lastOne = bits[bits.length-1];
console.log(lastOne);