What is wrong with this javascript code I made?

<html> <head> <script> function checkcookie(){ if(document.cookie.indexof(“Age”) >= ){ }else if(document.cookie.indexof(“Age”) < ){ }else if(document.cookie.indexof(“Age”) == “Un-decided”){ }else{ document.cookie = ‘Age=Un-Decided; expires Fri, th Mar :: UTC; path=/’ alert(“Age Veryfier”); } } checkcookie(); </script> </head> <body> </body> </html> ✅ Answers See… Source(s): http://www.wschools.com/js/js_cookies.asp try working with $_COOKIE, just search for it in google

reasons why programmer prefer object-oriented program?

✅ Answers ? Favorite Answer I am a programmer, and I DON’T prefer object-oriented programming. I lean toward functional programming. To each their own http://blog.thlight.com/uncle-bob////Thre… Anyway, as Abelson says “It’s all air”. cons (construct cell) car (first of cell) cdr (second of cell) are normally considered “fundamental” with lists – first is the data, and … Read more