Final answer:
To assign listNodes with elements having the class name 'language-item', use the getElementsByClassName() method.
Step-by-step explanation:
In order to assign listNodes with all elements having a class name of 'language-item', we need to use the JavaScript method getElementsByClassName(). This method returns a live HTMLCollection of elements that have the specified class name. Here's an example:
var listNodes = document.getElementsByClassName('language-item');
In this example, listNodes will contain all the elements with the class name 'language-item' in the document.