This means "if exist"
if($.cookie("movies_list")) {
// do something
}
How to write "if not exist" without changing the structure?
This means "if exist"
if($.cookie("movies_list")) {
// do something
}
How to write "if not exist" without changing the structure?