How to create REST API in Apex Let's look at how to create REST API in Apex. We would need this when we have a bit more customized requirements than performing basic DML on the sObject.
How to fetch records from an object where field 1 = field 2 only using soql? Have you ever wondered how we can fetch records from an object where field 1 = field 2 only using soql?
Using regular expressions in Apex Using regex in Apex is one of the most frequently encountered requirements when we work on string manipulation a lot.
Copy to Clipboard functionality in LWC Let's look at how to implement the copy to clipboard functionality in LWC
Get the list of profiles having access to a specific object - SOQL Interview Question This interview question on SOQL is going to make you aware of how can use SOQL and get all the profile names having access to a specific object.
Top 10 Aura Components Interview Questions Have a look at these Top 10 Aura Components Interview Questions and I can guarantee that you will excel in your interview.
What is <aura:method /> in Aura Components? There might be a requirement to invoke the Javascript method in the child component from the parent component and in such scenarios <aura:method /> comes handy.
How to fetch SObject fields API names in Dev Console without any extension This feature of being able to fetch Sobject fields API names directly from Developer Console is going to save you tons of time.s
Writing the test class for an Extension in Apex When we need to write test cases for an extension that might be a bit of a learning curve and this post helps you with that.
Using SLDS to avoid printing specific elements on the LWC Component There might be an ask from the business that only certain parts of the page have to be printed and avoid other elements from getting printed when we save the file as PDF or when taking a printout.