TypeScript – Ambients
Ambient declarations are a way of telling the TypeScript compiler that the actual source code exists elsewhere. When you are consuming a bunch of third-party js libraries like jquery/angularjs/nodejs you can’t rewrite…
Ambient declarations are a way of telling the TypeScript compiler that the actual source code exists elsewhere. When you are consuming a bunch of third-party js libraries like jquery/angularjs/nodejs you can’t rewrite…
A module is designed with the idea to organize code written in TypeScript. Modules are broadly divided into − Internal ModulesExternal Modules Internal Module Internal modules came in earlier version…
LASSO (Least Absolute Shrinkage and Selection Operator) LASSO is the regularisation technique that performs L1 regularisation. It modifies the loss function by adding the penalty (shrinkage quantity) equivalent to the…
A namespaces is a way to logically group related code. This is inbuilt into TypeScript unlike in JavaScript where variables declarations go into a global scope and if multiple JavaScript…
In this guide we will discuss about Keywords in R Programming. In programming, a keyword is a word which is reserved by a program because it has a special meaning.…
This topic is about CodeIgniter - Security. XSS Prevention XSS means cross-site scripting. CodeIgniter comes with XSS filtering security. This filter will prevent any malicious JavaScript code or any other…
Bayesian ridge regression allows a natural mechanism to survive insufficient data or poorly distributed data by formulating linear regression using probability distributors rather than point estimates. The output or response…
This chapter is about CodeIgniter - Internationalization. The language class in CodeIgniter provides an easy way to support multiple languages for internationalization. To some extent, we can use different language…
An object is an instance that contains a set of key-value pairs. The values can be scalar values or functions or even array of other objects. The syntax is given below −…
This topic is about CodeIgniter - Adding JS & CSS. Adding JavaScript and CSS (Cascading Style Sheet) file in CodeIgniter is very simple. You have to create JS and CSS…