Limit word count in word press content

{ // deep_execution_view
const authorName = "Ankit Agrawal";
//
const publishDate = "December 7, 2015";

there is a predefined function to set word limit in wordpress

<?php
$wordCount = 50;
echo wp_trim_words(get_the_content(),$wordCount,'....');
?>
}