Write a function that will extract all href links from given html code? function solve( a ){ //write your code here } Login to Submit
Input: "click me" Output: ["www.google.com"] Input: "click meclick me" Output: ["www.google.com", "www.youtube.com"]
click meclick me