48. What are the various methods to access DOM elements in JavaScript?
easy
There are several ways to access DOM elements in JavaScript:

1. Using getElementsByTagName() method: This method is used to get all the elements of a particular tag name. For example, if you want to get all the p tags on a page, you can use the following code:
var pTags = document.getElementsByTagName('p');

2. Using querySelector() method: This method is used to select an element based on its CSS selector. For example, if you want to get the first div with the class "myClass", you can use the following code:
var myDiv = document.querySelector('.myClass');

3. Using getElementsByClassName() method: This method is used to get all the elements of a particular class name. For example, if you want to get all the divs with the class "myClass", you can use the following code:
var myDivs = document.getElementsByClassName('myClass');

4. Using getElementById() method: This method is used to get an element by its id. For example, if you want to get an element with the id "myId", you can use the following code:
var myElement = document.getElementById('myId');

5. Using getAttribute() method: This method is used to get the value of an attribute of an element. For example, if you want to get the value of the href attribute of a link element with the id "myLink", you can use the following code:
var myLink = document.getElementById('myLink');
var linkHref = myLink.getAttribute('href');