Description more then 200 character after that add... from javascript

Images effect on hover from CSS3

Gaming

We’ve been renowned for delivering interactive, visually appealing and exciting gaming experiences on Mobile, Console, and Virtual Reality platforms.

Images effect on hover from CSS3

Web Development

Our web developers create custom web and web application solutions. We deliver web presence to help you grow your business using the best web technologies. Our web developers create custom web and web application solutions. We deliver web presence to help you grow your business using the best web technologies.

Images effect on hover from CSS3

UI/UX Design

Starting from concept, information architecture, visual identity and UI/UX design, our team delivers dazzling experiences for maximum user engagement. Starting from concept, information architecture, visual identity and UI/UX design, our team delivers dazzling experiences for maximum user engagement.

Images effect on hover from CSS3

Mobile Apps

We build intuitive and engaging Android, iOS and cross-platform apps for businesses, consumers and enterprises that end users love and adapt to them very quickly.

Images effect on hover from CSS3

Hire Dedicated Developers

Create your own team of developers for your software development project on short term, long term or permanent basis with guaranteed project delivery at affordable prices. Create your own team of developers for your software development project on short term, long term or permanent basis with guaranteed project delivery at affordable prices.

Images effect on hover from CSS3

QA Services

Our QA engineers don’t just test, they make your software application successful ensuring quality delivery with expert manual and automated testing services.

If you're asking how to truncate a string to a certain number of characters and add ellipsis at the end in JavaScript, you can use the substring() method to extract a portion of the string, and then concatenate the ellipsis to the end.

In this example, we define a maxLength variable with a value of 200, and a description variable with a long string of text. We check if the length of the description is greater than maxLength, and if so, we truncate the string using the substring() method to extract the first 200 characters, and concatenate the ellipsis to the end. Finally, we log the truncated description to the console.

You can modify the maxLength value and the description string to suit your needs.