SVG and Canvas are different technologies: SVG is for vector graphics; Canvas is for bitmaps.
Both have their place, and both are very good things to be learning. They're both quite new (particularly Canvas), so there aren't that many toolkits and libraries built for them yet. But you can be sure they're coming!
The best JS library I know of currently which is built on top of SVG is Raphael, which allows you to draw SVG graphics, but automatically switches to VML for older versions of IE. Even better, on top of Raphael is gRaphael, which is a very powerful graphing library.
The only major desktop browser that doesn't support SVG is older versions of IE. IE9 does support it, but older versions (IE6/7/8) support VML instead. But as I said, Raphael will use either SVG or VML as required, so if you write your code with Raphael, you don't need to worry about the browser at all. But in case you're planning on writing the SVG code directly, you may be interested to know that Google have written a JS library to allow older versions of IE to support SVG: http://fuzzytolerance.info/code/google-builds-javascript-svg-library-for-ie/. There are also a few other similar libraries around too.
However, in the world of Mobile browsers it's a completely different story, because at the moment SVG is not supported at all by the Android browser, and there is no fall-back solution either. This is unfortunate, as it's a big gap in support for a technology that is otherwise pretty universal. No doubt it'll be added eventually, but in the meanwhile, if you need to support mobile browsers, SVG is pretty much off the table, so you'll have to use Canvas.