Remove default jquery from wordpress

{ // deep_execution_view
const authorName = "Ankit Agrawal";
//
const publishDate = "April 2, 2018";
WordPress themes comes with a default jquery if you want to remove that jquery then write following code in functions.php

[code lang=”php”]

if (!is_admin())
{
add_action("wp_enqueue_scripts", "ce_enqueue_scripts");
}

function ce_enqueue_scripts()
{
wp_deregister_script(‘jquery’);
}

[/code]

}

Add this website to your home screen?