Building an expert system AI in JavaScript.
-
Building an Expert System in JavaScript – Part 1

An expert system emulates the knowledge and expertise of a human being by breaking it up to two parts: A knowledge base, and an inference engine. First developed in the 1960’s and later became widely used in the 1980’s, it is one of the first successful application of AI. In…
-
Building an Expert System in JavaScript – Part 2

In the previous part of this series, we built a DynamicForm class to generate dialogue boxes for user input. Now, we’re taking it a step further, implementing the knowledge base and designing a way for an expert to store the queries for the user to answer. For the following code,…
