Home > JavaScript

JavaScript

Spring Boot with Qdrant for vector database

In recent years, the rise of machine learning and deep learning has made vector databases increasingly important for managing high-dimensional data... Read More »

Spring Boot with Weaviate for vector search

The world of search is evolving. Traditional keyword-based search systems are giving way to vector search, which utilizes machine learning and sema... Read More »

Vue.js component development best practices

Discover essential Vue.js component development best practices with detailed explanations, examples, and code snippets for scalable applications. Read More »

Invalid JSON if integer value starts with 0

javascript

If any integer value in the JSON starts with 0, the parser will throw an error as “invalid key:value pair” or “SyntaxError: Unexpected number in JSON at position xx” . The reason of this error is because if the integer begins with leading 0 then it will consider this value as Octal number. As Octal number always starts with 0 ... Read More »