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
Tulasiram ChippalaTulasiram Chippala 

how to popup values in Lightning web components

There is a button on a page, then click on it it will open a standard contact page for creating a new contact. I am using below code in javascript 
navigateToNewRecordPage() {
        // Opens the new Account record modal
        // to create an Account.
        this[NavigationMixin.Navigate]({
            type: 'standard__objectPage',
            attributes: {
                objectApiName: 'Account',
                actionName: 'new'
            }
        });

How we can pass some field values into that page. Values like accountId, phone, email etc. Can anyone help me with this? Thank you!