function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
sreekanth vallepusreekanth vallepu 

could pls explain what is reactive

could u pls exaplain about what is track reactive and api reactive
VinayVinay (Salesforce Developers) 
Hi Sreekanth,

Track:
To track a private property’s value and re-render a component when it changes, decorate the property with @track. Tracked properties are also called private reactive properties.

API:
To expose a public property, decorate it with @api.
Public properties define the API for a component. An owner component that uses the component in its markup can access the component’s public properties. Public properties are reactive. If the value of reactive property changes, the component’s template rerenders any content that references the property.
To expose a public method, decorate it with @api. Public methods are part of a component’s API. You can use a JavaScript method to communicate down the containment hierarchy. For example, an owner calls a method on a child component that it contains.

https://rajvakati.com/2019/02/07/lightning-web-component-reactive-properties/

Please mark as Best Answer if above information was helpful so that it can help others in the future.

Thanks,
Suraj Tripathi 47Suraj Tripathi 47
Hi sreekanth,

This might help you
http://simpluslabs.com/how-to-create-update-delete-and-fetch-records-in-lightning-web-component/

If this answer is helpful for you then mark it as the best answer.
sreekanth vallepusreekanth vallepu
Could u pls suggest any videos sir