What would the most efficient method be to find a child element of (with class or ID) of a particular parent element using pure javascript only. No jQuery or other framework
If you already have var parent = document.querySelector('.parent'); you can do this to scope the search to parent's children:
var parent = document.querySelector('.parent');
parent
parent.querySelector('.child')