JS & Node

Add & Remove List Items In Javascript (Simple Examples)

Welcome to a quick tutorial on how to add and remove list items in Javascript. Need to dynamically update an HTML list in Javascript? To add a list item in Javascript: <ul id=”myList”></ul> var li = document.createElement(“li”); li.innerHTML = “Item”; document.getElementById(“myList”).appendChild(li); To remove a list item in Javascript: var myList = document.getElementById(“myList”); var items = […]

Add & Remove List Items In Javascript (Simple Examples) Read More »

4 Ways To Remove Line Breaks In Javascript

Welcome to a quick tutorial on how to remove line breaks in Javascript. Want to remove all line breaks and create a “flat string” in Javascript? There are actually a few ways to do it: STRING.replace(/\r?\n|\r/, “”); STRING.replaceAll(“\r”, “”).replaceAll(“\n”, “”); To remove HTML line breaks – STRING.replaceAll(“<br>”, “”).replaceAll(“<br/>”, “”); To remove only leading and trailing

4 Ways To Remove Line Breaks In Javascript Read More »