AmitDiwan has Published 10744 Articles

How to set div position relative to another div in JavaScript?

AmitDiwan

AmitDiwan

Updated on 07-Sep-2020 07:29:16

683 Views

For this, you need to use “flex-direction” concept of CSS. Let’s say the following is our CSS style −    .demo{       display: flex;       flex-direction: column-reverse;    } Now, set the div position relative to another div −Example Live Demo Document ... Read More

How to run functions iteratively with async await in JavaScript?

AmitDiwan

AmitDiwan

Updated on 07-Sep-2020 07:27:03

217 Views

You can use keyword async as well as await. Following is the code −Exampleasync function test(i) {    while (i node demo73.js Call Demo1() Call Demo2() Call Demo1() Call Demo2() Call Demo1() Call Demo2() Call Demo1() Call Demo2() Call Demo1() Call Demo2() Call Demo1() Call Demo2() Call Demo1() Call ... Read More

Get value of any attribute from XML data in JavaScript?

AmitDiwan

AmitDiwan

Updated on 07-Sep-2020 07:25:00

1K+ Views

To get value of any attribute from XML data, use attr() in JavaScript. Following is the code −Example Live Demo Document    var yourXMLDetails = ''    +''    +''    +''    console.log("Game Details==="+$(yourXMLDetails).attr("details")); To run the above ... Read More

Iteration of for loop inside object in JavaScript to fetch records with odd CustomerId?

AmitDiwan

AmitDiwan

Updated on 07-Sep-2020 07:22:44

269 Views

Let’s say the following is our object −var customerDetails= [    {       customerId:101,       customerName:"John"    },    {       customerId:102,       customerName:"David"    },    {       customerId:103,       customerName:"Mike"    },    {       customerId:104,       customerName:"Bob"    } ]Use for loop with the following condition to display only odd CustomerID records −for(var index=0;index

Create HTML Document with Custom URL for the document in JavaScript

AmitDiwan

AmitDiwan

Updated on 07-Sep-2020 07:19:56

2K+ Views

You can use the concept of createHTMLDocument(). Following is the code −Example Document    const htmlDocument = document.implementation.createHTMLDocument();    const customURL = htmlDocument.createElement( 'base' );    customURL.href = "https://www.tutorialspoint.com/java/index.htm";    htmlDocument.head.append( customURL );    console.log("Base URL="+customURL.href);    const modifiedURL = ... Read More

Select all elements with “data-” attribute with jQuery and display on Console?

AmitDiwan

AmitDiwan

Updated on 07-Sep-2020 07:17:06

2K+ Views

To select all elements with “data-“ attribute, use document.querySelectorAll(“”). Following is the code −Example Live Demo Document    var result=document.querySelectorAll('[data-sentence]');    for (var index in result){       if (result.hasOwnProperty(index)){          console.log(result[index].getAttribute('data-sentence'));     ... Read More

Match multiple occurrences in a string with JavaScript?

AmitDiwan

AmitDiwan

Updated on 07-Sep-2020 07:14:35

1K+ Views

To match multiple occurrences in a string, use regular expressions. Following is the code −Examplefunction checkMultipleOccurrences(sentence) {    var matchExpression = /(JavaScript?[^\s]+)|(typescript?[^\s]+)/g;    return sentence.match(matchExpression); } var sentence="This is my first JavaScript Program which is the subset of typescript"; console.log(sentence); console.log(checkMultipleOccurrences(sentence));To run the above program, you need to use the ... Read More

Remove elements from array in JavaScript using includes() and splice()?

AmitDiwan

AmitDiwan

Updated on 03-Sep-2020 07:43:20

359 Views

The includes() check whether array has a specific element, whereas splice() is used to add/remove items. Following is the code −ExampledeleteElementsFromArray = function(elements, ...values) {    let elementRemoved = Array.from(values);    for (var index = 0; index < elements.length; index++){       if (elementRemoved.includes(elements[index])){          elements.splice(index, ... Read More

How to print all students name having percentage more than 70% in JavaScript?

AmitDiwan

AmitDiwan

Updated on 03-Sep-2020 07:40:32

546 Views

You can use a for loop and check whether the percentage is greater than 70 or not with if condition.Following are the records of each student −const studentDetails= [    {       studentName:"John",       percentage:78    },    {       studentName:"Sam",       ... Read More

How can I get seconds since epoch in JavaScript?

AmitDiwan

AmitDiwan

Updated on 03-Sep-2020 07:38:17

391 Views

To get seconds since epoch, use the below syntax −var anyVariableName= new Date(); Math.round(yourDateVariableName.getTime() / 1000);At first, get the current date −var currentDate= new Date();Now, get seconds since epoch −Examplevar currentDate= new Date(); var epochSeconds = Math.round(currentDate.getTime() / 1000); console.log(epochSeconds);To run the above program, you need to use the following ... Read More

Advertisements