

Conseil
Discover our fields of expertise
Design & Code
Java, Python, C++, C#, Front-end
Deliver & Run
DevOps, Application Support & Production
Beyond Data
Big data, Machine Learning
Be & Do Agile !
Agility, Craftsmanship, Product management
Beyond Finance
Post-trade, Risks, Modelling & Pricing, Business Analysis
Logiciels
Our software for BizDevOps
Scenario
Manage your scenarios easily!
Chatbot Fabric
Create chatbots to serve your business
Servicefull
Guarantee the success of your IT projects
AppControl
Monitor and above all, Act!
Try X4B now !
Blog
Let’s talk about Tech !
Events
Incoming events
by Marcos Almeida | Oct 31, 2018 | Front-End
In most programming languages, the “this” keyword is used in the non-static code of a class to refer to the current object. For example: class Car { constructor() { this.wheels = 4; } addWheels(n) { this.wheels += n; } } let car = new Car(); car.addWheels(2);...by Marcos Almeida | Aug 14, 2018 | Front-End, Java
The immutability is a very highly exploited concept in functional programming languages, where the values of the variables do not change when assigned. This has the merit of simplifying the administration of the application state by reducing the number of shared...