Answer:
accept people for who they are instead of trying to change them
Explanation:
i don't know if this is right or wrong but i hope this helped you :)
Answer:
function findLongestWord(str) {
var longestWord = str.split(' ').sort(function(a, b) { return b.length - a.length; });
return longestWord[0].length;
}
findLongestWord(InputHere);
Explanation:
Replace InputHere with the input
Answer:
<em>What are your thoughts about this?</em>
Explanation:
A question that can be answered with yes or no is a closed question.